如何在shell中输出返回码?

发布于 2024-11-26 05:01:28 字数 233 浏览 2 评论 0原文

我试图通过 sh 调用自定义 shell 脚本:

/bin/sh -c 'myscript.sh` >log.txt 2>&1 & echo $!

此命令的输出是创建的后台进程的 PID。我想指示 /bin/shmyscript.sh 的返回代码保存到某个文件。是否可以?

I'm trying to call a custom shell script through sh:

/bin/sh -c 'myscript.sh` >log.txt 2>&1 & echo $!

Output of this command is a PID of a created background process. I want to instruct /bin/sh to save return code of myscript.sh to some file. Is it possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

攀登最高峰 2024-12-03 05:01:28
echo $? >> /path/to/return_code

$?具有 bash 中最后一条语句的返回码。

echo $? >> /path/to/return_code

$? has the return code of the last statement in bash.

旧竹 2024-12-03 05:01:28
(/bin/sh -c "myscript.sh" >log.txt 2>&1 ; echo $? >somefile) & echo $!
(/bin/sh -c "myscript.sh" >log.txt 2>&1 ; echo $? >somefile) & echo $!
睡美人的小仙女 2024-12-03 05:01:28
(
/bin/sh -c 'myscript.sh` >log.txt 2>&1
echo $? > some_file
) &
(
/bin/sh -c 'myscript.sh` >log.txt 2>&1
echo $? > some_file
) &
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文