- 単純に「find」を使用するか、/ で始まる絶対パスを使用します (ubuntu の場合は /usr/bin/find です)
- ファイルを削除する場合は、「rm -r」を使用しないでください
これは正常に動作します:
0 0 * * * /usr/bin/find /var/www/example.com/wp-content/targetdir -name "*.txt" -type f -mtime +7 -exec rm -f {} \;
これは正常に動作します:
0 0 * * * /usr/bin/find /var/www/example.com/wp-content/targetdir -name "*.txt" -type f -mtime +7 -exec rm -f {} \;