Showing posts with label Batch file. Show all posts
Showing posts with label Batch file. Show all posts

Tuesday, July 21, 2015

configure the auto-scheduler

crontab -e

// this command in crontab will be executed at 10 PM everyday
* 22 * * * python test.py

// this command in crontab will be executed at every 5 minutes
*/5 * * * * python test.py

crontab -l

//the alert message can check as below
vim /var/spool/mail/ping-chen.lin

Saturday, March 15, 2014

Batch教學

有沒有遇過想要在Windows連續執行一大堆指令或程式,卻要慢慢一個一個打的困擾,如果想要讓他自動化執行,就需要用到厲害的Batch檔嚕:D

以下是Batch檔的教學,很有用,可以參考看看唷
http://bbs.nsysu.edu.tw/txtVersion/boards/msdos/M.1078700757.A.html