2011年3月4日 星期五

[Linux命令] batch : 執行批次作業

屬性 : 系統相關 - 時間與排程 
語法 : batch [參數] 
參數 | 功能 

-f [檔案名] | 從檔案讀取指令
-m | 工作完成後, 以email通知該使用者
-q | 指定使用佇列
-V | 顯示使用版本訊息


執行範例: 
* 透過batch執行指令 
server1:~ # batch 
warning: commands will be executed using /bin/sh 
at> /bin/ls > /dev/pts/0 
at> /bin/ps > /dev/pts/0 
at>  # 按Ctrl +D 結束 
job 7 at 2009-07-19 23:24 

* 讓batch執行com.txt這個檔案內的指令 
server1:~ # batch -f com.txt 
warning: commands will be executed using /bin/sh 
job 8 at 2009-07-19 23:27 

補充說明 : 
1. batch 可以在CPU 用量較低時執行, 因此我們可以要將執行的指令放入batch, 讓batch在機器空閒時替我們完成工作. 

沒有留言:

張貼留言

[Git 常見問題] error: The following untracked working tree files would be overwritten by merge

  Source From  Here 方案1: // x -----删除忽略文件已经对 git 来说不识别的文件 // d -----删除未被添加到 git 的路径中的文件 // f -----强制运行 #   git clean -d -fx 方案2: 今天在服务器上  gi...