当前位置: 技术问答>linux和unix
求一个shell脚本,在脚本中启动程序
来源: 互联网 发布时间:2017-04-13
本文导语: 我的程序是死循环,当我在shell脚本中写入 cd /home/yc/GameServer/GameServer/Debug ./GameServer s1 启动shell脚本就会在运行程序,而不会执行sh脚本后面的,且shell脚本不退出,我的想法是启动程序后,shell脚本可以一次往下执行...
我的程序是死循环,当我在shell脚本中写入
cd /home/yc/GameServer/GameServer/Debug
./GameServer s1
启动shell脚本就会在运行程序,而不会执行sh脚本后面的,且shell脚本不退出,我的想法是启动程序后,shell脚本可以一次往下执行,执行完成后退出shell脚本,请问下启动程序的shell脚本应该怎么写?
cd /home/yc/GameServer/GameServer/Debug
./GameServer s1
启动shell脚本就会在运行程序,而不会执行sh脚本后面的,且shell脚本不退出,我的想法是启动程序后,shell脚本可以一次往下执行,执行完成后退出shell脚本,请问下启动程序的shell脚本应该怎么写?
|
cd /home/yc/GameServer/GameServer/Debug
./GameServer s1
改成
cd /home/yc/GameServer/GameServer/Debug
./GameServer s1 & #让他在后台运行。
./GameServer s1
改成
cd /home/yc/GameServer/GameServer/Debug
./GameServer s1 & #让他在后台运行。
|
nohup ./GameServer s1 &
|
后台执行 同上↑
|
放后台执行“&”
|
恩, 后台就可以了,nohup是不必要的。