배치 (at) 명령을 사용하여 스크립트를 작성하여 뉴스 레터를 발송했습니다.리눅스에서 일괄 처리 작업을 예약하는 방법
batch
at> ///myscript to run send out the newsletter
이제 특정 날짜에 해당 스크립트를 cron하고 싶습니다.
배치 (at) 명령을 사용하여 스크립트를 작성하여 뉴스 레터를 발송했습니다.리눅스에서 일괄 처리 작업을 예약하는 방법
batch
at> ///myscript to run send out the newsletter
이제 특정 날짜에 해당 스크립트를 cron하고 싶습니다.
"crontab"명령을 사용할 수 있습니다. 검색 만하면 다양한 결과를 얻을 수 있습니다. http://www.linuxandubuntu.com/home/linux-utility-understand-linux-crontab-or-cron-expressions-to-run-command-at-specific-interval
Usage:
crontab [options] file
crontab [options]
crontab -n [hostname]
Options:
-u <user> define user
-e edit user's crontab
-l list user's crontab
-r delete user's crontab
-i prompt before deleting
-n <host> set host in cluster to run users' crontabs
-c get host in cluster to run users' crontabs
-s selinux context
-x <mask> enable debugging
예 : 런타임 사용자에서
CORN_EXPRESSION 당신이 생성 할 수있는 곳 파일
CRON_EXPRESSION /path/to/my/batch/file
을
contab -e
를 편집 (스크립트를 실행할 사용자) 와 http://crontab-generator.org/
Google "linux cron tutorial". 지옥, 심지어 위키 피 디아 페이지가 어떻게 완료되는지 설명합니다 ... – fancyPants
이것은 어리석은 질문 인 것처럼 보이지만 배치 명령을 사용하여 만든 배치 파일의 경로를 어디에서 얻을 수 있습니까? – Chetan