你能在 shell 脚本中生成一个进程吗?
我试图让我的 #!/bin/sh shell 脚本启动另一个应用程序而不暂停执行。也就是说,我正在寻找一种在后台启动它并让我的 shell 脚本继续执行的方法。我希望它像这样工作:
# start daemon
start(){
success=`launch '/path/to/daemon'`
if [ $success != false ];then
echo 'daemon is now running'
fi
我也是 shell 脚本的新手,所以上面的(如果启动存在)会得到启动的 返回 或 stdout 设置为成功了吗?
我只想使用 SH 而不是 BASH。
I'm trying to get my #!/bin/sh shell script to start another application without pausing execution. That is I'm looking for a way to launch it in the background and have my shell script keep executing. I want it to work something like this:
# start daemon
start(){
success=`launch '/path/to/daemon'`
if [ $success != false ];then
echo 'daemon is now running'
fi
I'm also new to shell scripting so will the above (if launch existed) get the return of launch or the stdout set as $success?
I want to only use SH not BASH.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用“&”在程序名称后签名以在后台启动它。
将程序置于后台
Use '&' sign after program name to launch it in background.
Putting a program in the background
使用NOHUP。 http://en.wikipedia.org/wiki/Nohup 并使用 > 将输出发送到日志>我的日志文件名
use NOHUP. http://en.wikipedia.org/wiki/Nohup and send output to log using >> mylogfilename