我有一个过程
"verifyEmail"
I run this in script as verifyEmail 0 1000
现在我如何等到这个过程完成执行后再继续执行 shell 脚本中的下一条指令?verifyEmail 需要 60 多分钟才能运行
我试过了
while ! checkprocess "verifyEmail"; do ##Checkprocess is a function which returns 0 or 1
sleep 60 ## based on process present or not
done