nohup python3.8 test.py nohup: ignoring input and appending output to 'nohup.out'
时间: 2024-04-19 07:21:59 浏览: 141
nohup是一个Linux命令,用于在后台运行命令,并将输出重定向到文件中。在你提供的例子中,nohup python3.8 test.py的意思是在后台运行python3.8 test.py,并将输出追加到名为nohup.out的文件中。
使用nohup命令可以使命令在终端关闭后继续运行,而不会受到SIGHUP信号的影响。同时,通过将输出重定向到文件,你可以在后台运行的同时查看命令的输出。
需要注意的是,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 python3.8 test.py & [1] 17971 root@deepglint:~/AppData# nohup: ignoring input and appending output to 'nohup.out'
nohup是一个Linux命令,用于在后台运行程序,并且不受终端关闭的影响。它的使用方法是在命令前加上nohup,然后在命令后加上&符号,表示将程序放到后台运行。在你提供的例子中,nohup python3.8 test.py &的意思是在后台运行python3.8 test.py这个命令,并将输出结果追加到nohup.out文件中。
相关问题:
1. nohup命令的作用是什么?
2. 如何在后台运行一个程序?
3. 如何查看后台运行的程序?
阅读全文