输入终端之后显示nohup: ignoring input and appending output to 'nohup.out'
时间: 2023-11-30 22:43:06 浏览: 259
这个错误信息是nohup命令的正常输出,它表示nohup命令已经成功运行,并将标准输出和标准错误输出重定向到了nohup.out文件中。如果你想在运行nohup命令时不输出这个信息,可以将标准输出和标准错误输出重定向到/dev/null文件中。具体操作如下:
```shell
nohup command > /dev/null 2>&1 &
```
其中,command是你要在后台运行的命令。这个命令将标准输出和标准错误输出都重定向到了/dev/null文件中,因此不会输出nohup: ignoring input and appending output to '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文件中并忽略输入。
1nohup: ignoring input and appending output to ‘nohup.out’
nohup命令是在Linux系统中用于在后台运行进程的命令。当你使用nohup命令时,如果没有指定输出文件,那么输出将被重定向到当前目录下的nohup.out文件中。因此,当你到“nohup: input and appending output to ‘nohup.out’”这个错误信息时,说明你使用了nohup命令并且没有指定输出文件,所以输出被重定向到了nohup.out文件中。
如果你想要避免这个错误信息,可以在nohup命令后面指定输出文件的路径和文件名,例如:
```
nohup command > /path/to/output/file.log &
```
这样,输出就会被重定向到指定的文件中,而不是默认的nohup.out文件中。
阅读全文