Linux定时删除log

编写删除脚本

logPath=/data/

cd $logPath


echo "" > xiaozou/nohup.out

配置定时任务

  1. 执行crontab -e

  2. 编辑新增定时任务

*/30 * * * * sh /data/clear.sh

查看定时任务执行log

tail -f /var/log/cron

你可能感兴趣的:(Linux,linux,运维)