hi

#!/bin/bash
#delete all files older 7 days in all homes .recycle and its subfolders
find /home/*/.recycle/ -mtime +7 -type f -exec rm "{}" ";"

you can do this by cron in varias share with other paths

Regards

Rodrigo Carvalhaes schrieb:

Hi Joe!

Thanks for your promptly answer.

What I wanna to do is put one script on cron.daily to :

1. Clean all the files on the directories .recyycle(see below) that are older than 15 days.

\files\production\.recycle
\files\directory\.recycle
\files\it_teste\.recycle
\files\adm\sandra\.recycle
\files\testing\piedro\.recycle
\files\system\sources\.recycle
\files\system\testing\.recycle
\files\system\cvs\.recycle

2. Clean all the files on all the user homes that are older than 7 days. I have +/- 50 users and I wanna to make something automatic, that I donīt need to give maintaince on the script after creating a new user...

Ideas?


Cheers,

Rodrigo Miranda Carvalhaes
DBA PostgreSQL


[EMAIL PROTECTED] wrote:


Rodrigo,

Setting up a cron is easy. Do you have any scripting skills? If not, then give me the deatils (time stamps, directories, etc), and I can put something toegether for you in tcsh/bash or whatever.

Joe

Rodrigo Carvalhaes <[EMAIL PROTECTED]> wrote :


Hi!

I implemented the vfs reclycle and itīs really good!
Now, I wanna to put on my monthly cron a script to clean old recycles...

Someone have examples to send me ? Tips?

Thanks !

Cheers

Rodrigo Miranda Carvalhaes

--
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba





--
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba

Reply via email to