nohup: ignoring input and appending output to ‘nohup.out’ 怎么解决
时间: 2023-03-28 14:02:13 浏览: 244
Linux(二)常用命令chmod nohup sed等
这个问题可能是由于 nohup 命令的输出被重定向到了 nohup.out 文件中,而输入被忽略了。你可以尝试使用以下命令来解决这个问题:
nohup command > /dev/null 2>&1 &
其中,command 是你要执行的命令。这个命令会将命令的输出和错误信息都重定向到 /dev/null 中,从而避免了输出被重定向到 nohup.out 文件中的问题。同时,& 符号可以将命令放到后台运行,避免了输入被忽略的问题。
阅读全文