Linux command line program without wait [LINUX 執行命令 等待N秒 停止(刪除) 執行中程式]

Linux command line program without wait [LINUX 執行命令 等待N秒 停止(刪除) 執行中程式]

Linux command line program without wait [LINUX 執行命令 等待N秒 停止(刪除) 執行中程式]


資料來源: https://unix.stackexchange.com/questions/103731/run-a-command-without-making-me-wait

https://linuxize.com/post/how-to-use-linux-sleep-command-to-pause-a-bash-script/


語法:

my_command > output.log 2>&1 &
sleep 秒數
ps aux | grep 執行檔關鍵字 | awk '{print $2}' | xargs kill -9


實例:

chromium-browser http://jashliao.eu/google_seo/index02.php http://jashliao.eu/google_seo/index02.php http://jashliao.eu/google_seo/index02.php http://jashliao.eu/google_seo/index02.php --user-agent="Mozilla/5.0 (Linux; Android 6.0.1; SM-J700M Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36"  > output.log 2>&1 &
sleep 60
ps aux | grep chrom | awk '{print $2}' | xargs kill -9

One thought on “Linux command line program without wait [LINUX 執行命令 等待N秒 停止(刪除) 執行中程式]

發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *