「Linux」7日前のファイルを削除するメモ
7日前のファイルを削除
#cat delcft.sh
#!/bin/sh
location="/home/tmp/"
find $location -mtime +7 -type f |xargs rm -f
#crontab -l
10 4 1 * * /bin/sh /root/shell/delcft.sh
Coding Changes the World
7日前のファイルを削除
#cat delcft.sh
#!/bin/sh
location="/home/tmp/"
find $location -mtime +7 -type f |xargs rm -f
#crontab -l
10 4 1 * * /bin/sh /root/shell/delcft.sh