shell脚本运行5秒自动退出的代码

发布时间:2020-03-11编辑:脚本学堂
shell脚本运行5秒自动退出的代码,供大家学习参考。

shell/ target=_blank class=infotextkey>shell脚本运行5秒自动退出的代码,供大家学习参考。
 

复制代码 代码如下:

#!/bin/bash

#name show_status.sh

#echo $$ > /var/run/show_status.log
#sleep 5 && kill `cat /var/run/show_status.log` &

#start code
echo "hello world"
#end code