Monday, September 24, 2012

Linux: как стереть из папки файлы старше 24 часов

Сейчас поднимал маленький кеш сервер. Надо хранить билды, но те, что  не старше 24 часов. Как это сделать?

Сервак простой Apache (с LDAP - см. далее). Как идет синхронизация не так важно. Как стереть ненужные файлы? Можно сделать шелл-скрипт. Но это все делается одной строкой:

find /var/www/* -mmin +1440 -exec rm {} \;

Что делает эта команда?

Найти в  папке /var/www/ все файлы и директории, которые были изменены как минимум 1440 минут назад (сутки), и для каждой найденной исполнить удаление. {} означает имя найденного файла, а \; - конец команды. Без него не работало у меня.

Все можно найти на man find
  Measure  times  (for  -amin,  -atime,  -cmin, -ctime, -mmin, and
       -mtime) from the beginning of today rather than  from  24  hours
       ago.   This  option only affects tests which appear later on the
       command line.
-exec command {} + This variant of the -exec option runs the specified command on the selected files, but the command line is built by appending each selected file name at the end; the total number of invoca- tions of the command will be much less than the number of matched files. The command line is built in much the same way that xargs builds its command lines. Only one instance of '{}' is allowed within the command. The command is executed in the starting directory.


/var/www/  - папка моего Апача. А скрипт надо вставить в CRON.
crontab -e

и вставляем последней строчкой 

0 1 * * * find /var/www/* -mmin +1440 -exec rm {} \;

Все просто.

No comments:

Post a Comment