기계는 거짓말하지 않는다

Ubuntu crontab 본문

Linux

Ubuntu crontab

KillinTime 2023. 6. 16. 22:20

Cron은 지정된 시간에 원하는 작업(백그라운드에서)을 실행하는 데 사용되는 시스템 데몬이다.

크론탭 편집

crontab -e

# 관리 권한으로 사용되는 크론탭 명령
sudo crontab -e

크론탭 라인

각 행에는 5개의 시간 및 날짜 필드, 명령, 개행 문자('\n')가 있다. 필드는 공백으로 구분된다.

5개의 시간 및 날짜 필드는 공백을 포함할 수 없으며, 5개의 시간 및 날짜 필드는 다음과 같다.

분(0-59), 시(0-23, 0 = 자정), 일(1-31), 월(1-12), 요일(0-6, 0 = 일요일)

# 매일 자정 15분에 hello 프로그램 실행
15 0 * * * ~/hello

# 매일 10분 마다 hello 프로그램 실행
*/10 * * * * ~/hello

 

CronHowto - Community Help Wiki (ubuntu.com)

 

CronHowto - Community Help Wiki

Introduction Cron is a system daemon used to execute desired tasks (in the background) at designated times. A crontab file is a simple text file containing a list of commands meant to be run at specified times. It is edited using the crontab command. The c

help.ubuntu.com

 

Comments