crontab 이란? 리눅스에서 특정한 시간에 어떤 작업을 수행하기 위해 스케줄링하는 기능이다. crontab 사용법 명령어 $ crontab [옵션] [파일명] # crontab 작성 $ crontab -e # crontab 작업 리스트 보기 $ crontab -l # crontab 모든 작업 삭제 $ crontab -r # root 사용자가 특정 사용자의 crontab 파일을 다룰 때 사용 $ crontab -u crontab 작성 # 기본 작성 예시 * * * * * /home/user/test.sh # 매분 test.sh 을 실행 $ * * * * * /home/user/test.sh # 매일 23시 30분에 실행 $ 30 23 * * * /home/user/test.sh # 매주 일요일 22시 45분에 실행 $ 45 22 * * 0 /home/user/test.sh # 매월 1일 8시 33분에 실행 $ 8 33 1 * * /home/user/test.sh # cat /...
#
command
#
crontab
#
linux
#
리눅스
#
리눅스명령어
#
리눅스예약
원문 링크 : crontab