Linux下crontab输出到日志文件改为增量输出
2020-03-13 本文已影响0人
nnlzx
写一个crontab脚本,定时执行
*/1 * * * * cd /home/batch/ && ./test.sh >/home/batch/log/test.log
Tips: >为覆盖输出, >>为增量输出.
写一个crontab脚本,定时执行
*/1 * * * * cd /home/batch/ && ./test.sh >/home/batch/log/test.log
Tips: >为覆盖输出, >>为增量输出.