nohup: ignoring input and appending outpu to 'nohup.ouot'
时间: 2024-04-03 09:29:06 浏览: 128
nohup是一个在Unix和Linux系统中使用的命令,用于在后台运行命令或程序,并忽略输入,将输出追加到指定文件中。它的主要作用是使命令或程序在用户退出登录或关闭终端后仍然能够继续运行。
当你在终端中执行一个命令或程序时,通常会在命令后面加上&符号,将其放入后台运行。但是,如果你关闭终端,该命令或程序也会随之终止。这时就可以使用nohup命令来解决这个问题。
使用nohup命令的基本语法如下:
```
nohup command [arg...]
```
其中,command是要执行的命令或程序,arg是命令或程序的参数。
当你执行nohup命令后,它会将命令或程序放入后台运行,并将输出追加到当前目录下的nohup.out文件中。如果你想指定输出文件的名称,可以使用重定向符号">"来指定,例如:
```
nohup command [arg...] > output_file
```
需要注意的是,nohup命令只能忽略输入,而不能忽略输出。如果命令或程序需要从标准输入中读取数据,可以将输入重定向到一个文件中,然后再使用nohup命令运行。
相关问题
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` 命令时出现的。它表示 `nohup` 命令忽略了输入,并将输出追加到名为 `nohup.out` 的文件中。这通常是因为你在后台运行某个命令,希望它在终端关闭后继续运行。
如果你不希望看到这个错误信息,你可以将标准输入重定向到一个文件,如下所示:
```shell
nohup command > output.txt &
```
这样,命令的输出将被重定向到 `output.txt` 文件中,并且你不会再看到 `nohup: ignoring input and appending output to ‘nohup.out’` 的提示信息。
阅读全文