2012年4月25日 星期三

shell script - delay for a while

之前一直在想說寫shell script時要怎麼在指令間達到 delay的效果,
後來發現很簡單只要加
    sleep (second)
就行了

ex:
想要執行pwd 10秒後再執行ifconfig

---test.sh---
pwd
sleep 10
ifconfig
---

沒有留言:

張貼留言