「shell」5日前より古いファイルを削除するメモ
#cat filedel.sh
#!/bin/sh
location="/var/www/data"
find $location -mtime +5 -type f |xargs rm -f
#crontab -l
20 5 1 * * /bin/sh /root/shell/filedel.sh
Coding Changes the World
#cat filedel.sh
#!/bin/sh
location="/var/www/data"
find $location -mtime +5 -type f |xargs rm -f
#crontab -l
20 5 1 * * /bin/sh /root/shell/filedel.sh