linux – 退出重定向命令的代码

前端之家收集整理的这篇文章主要介绍了linux – 退出重定向命令的代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

所以我想验证特定命令的退出代码

runuser -s /bin/bash @user_name -c $command > /dev/null 2>&1 &

如何查找命令runuser -s / bin / bash @user_name -c $命令是否正确执行?
我试过用$?但它不起作用,因为它始终为0(重定向的结果为0)

如何找到该命令的退出代码

最佳答案
由于任务的背景(通过&)而不是重定向,退出代码不可用.

您应该使用wait获取后台任务的退出代码.

wait command stop script execution until all jobs running in
background have terminated,or until the job number or process id
specified as an option terminates. It returns the exit status of
waited-for command.

原文链接:https://www.f2er.com/linux/440448.html

猜你在找的Linux相关文章