shell腳本中執行一個命令,在等待15秒後,沒有這個命令的結果,就執行下一條

#!/bin/bash   func() {      wget ...      touch  finished }   func & sleep  3000 if  [ -f finished ] then      echo  "finished" else      echo  "not finished" fi rm  -f finished touch命令有兩個功能:一是用於把已存在文
相關文章
相關標籤/搜索