如何使bash脚本等待然后继续运行?


1

我有一个 .sh 脚本。我想等25分钟,然后继续跑,不要重复。
它是这样的:

#!/bin/bash
/bin/bash ~/path/script.sh

我希望它等待25分钟后杀死一个进程。

#Wait 25 minutes
killall process

Answers:



0

尝试: sleep 25m

这应该使脚本睡眠25分钟,然后继续执行

对于第二次尝试睡觉: sleep 25

这将使它睡眠25秒

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.