你能在 shell 脚本中生成一个进程吗?

发布于 2024-11-30 08:35:57 字数 354 浏览 1 评论 0原文

我试图让我的 #!/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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

二智少女猫性小仙女 2024-12-07 08:35:57

使用“&”在程序名称后签名以在后台启动它。
将程序置于后台

Use '&' sign after program name to launch it in background.
Putting a program in the background

烙印 2024-12-07 08:35:57

使用NOHUP。 http://en.wikipedia.org/wiki/Nohup 并使用 > 将输出发送到日志>我的日志文件名

use NOHUP. http://en.wikipedia.org/wiki/Nohup and send output to log using >> mylogfilename

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文