将 nohup 的 stderr 重定向到 nohup.out

问题描述 投票:0回答:2

如何使用

nohup
运行命令,以便将 stdout 和 stderr 保存到
nohup.out
?默认情况下,仅保存 stdout,并丢弃 stderr。

bash shell stdout stderr nohup
2个回答
30
投票

试试这个

nohup 2>&1 Ex.exe &

0
投票

如果你使用的是C Shell,你可以试试这个:

nohup ./run.csh >& nohup.out &
© www.soinside.com 2019 - 2024. All rights reserved.