[linux] crontab 날짜별 로그파일 생성하기
crontab이 익숙하지 않으신 분들은 먼저 아래의 글을 읽으시길 바랍니다. crontab 사용법: https://daewoonginfo.blogspot.com/2019/04/linux-crontab_16.html crontab -e 사용법: https://daewoonginfo.blogspot.com/2019/04/linux-crontab-e_16.html 날짜별 로그파일 만들기 * * * * * echo "day" >> /home/cldw1101/test_$(date +\%m\%d).log 2>&1 escape를 추가 해주어야 날짜별 로그파일명이 생성됩니다. 0509의 날짜로 파일이 생성된걸 확인할 수 있습니다. 참고자료 https://stackoverflow.com/questions/9110663/cron-task-append-current-date-to-the-filename-via-cron