2018년 7월 19일 목요일

crontab

crontab


참고




시간 단위

  • 분(0 ~ 59)
  • 시(0 ~ 23)
  • 일(1 ~ 31)
  • 월(1 ~ 12)
  • 요일(0 일요일 ~ 6 토요일)

예) 매분마다 명령 수행


* * * * * <command>


명령 목록


$ crontab -l
crontab: no crontab for $USER


명령 편집


$ crontab -e
* * * * * echo "hello" >> /tmp/hello.txt


Editor 설정


$ env EDITOR=emacs crontab -e

$ crontab -l
* * * * * echo "hello" >> /tmp/hello.txt

$ cat /tmp/hello.txt
hello


명령 제거


$ crontab -r
$ crontab -l
crontab: no crontab for $USER


댓글 없음:

댓글 쓰기