不希望在执行时打印 nohup: nohup: appending output to ‘nohup.out’
时间: 2023-11-05 17:52:22 浏览: 164
Linux(二)常用命令chmod nohup sed等
你可以尝试使用以下命令来避免在执行时打印 "nohup: appending output to 'nohup.out'":
```
nohup command >/dev/null 2>&1 &
```
这将把标准输出和错误输出重定向到 `/dev/null`,而不是默认的 `nohup.out` 文件。这样就不会打印出上述的信息。请将 `command` 替换为你要运行的实际命令。
阅读全文