nohup: ignoring input and appending output to ?.ohup.out?
时间: 2024-01-14 12:21:31 浏览: 177
nohup命令是在Unix和类Unix操作系统中使用的一个命令,它用于在后台运行命令,并且忽略输入并将输出追加到指定的文件中。在你提供的引用中,nohup命令忽略输入并将输出追加到'nohup.out'文件中。
以下是一个示例,演示了如何使用nohup命令忽略输入并将输出追加到指定的文件中:
```shell
nohup command > nohup.out &
```
在这个示例中,将"command"替换为你想要在后台运行的命令。运行该命令后,它将忽略输入并将输出追加到'nohup.out'文件中。
相关问题
nohup: appending output to ‘nohup.out’ nohup: ignoring input and appending output to ‘nohup.out’
nohup命令是在Linux中用于在后台执行命令,并将输出信息重定向到nohup.out文件中的命令。当你在终端中使用nohup命令时,会出现"nohup: ignoring input and appending output to ‘nohup.out’"的错误信息,表示命令会忽略输入并将输出信息添加到nohup.out文件中。此外,你还提到了另一个错误信息"nohup: ignoring input and redirecting stderr to stdout",这表示命令会忽略输入并将标准错误输出重定向到标准输出。
所以,当你在终端看到"nohup: appending output to ‘nohup.out’ nohup: ignoring input and appending output to ‘nohup.out’"的输出时,说明nohup命令执行成功,命令将输出信息追加到nohup.out文件中并忽略输入。
nohup: ignoring input and appending output to 'nohup.out
nohup: ignoring input and appending output to 'nohup.out’这个错误信息表示在使用nohup命令时,输入被忽略并且输出被追加到nohup.out文件中。nohup命令用于在系统后台运行命令,即使你退出终端,程序仍然会继续运行。默认情况下,nohup命令会将输出信息重定向到一个名为nohup.out的文件中,如果当前目录下的nohup.out文件不可写,则会将输出重定向到$HOME/nohup.out文件中。
出现这个错误的原因是在运行nohup命令时没有在命令的末尾添加&符号,导致命令没有在后台运行。解决方法是在需要在后台运行的nohup命令的末尾添加&符号,这样就不会出现该错误了。
阅读全文