有人能提醒我如何通过终端运行应用程序,这样我就可以在程序打开后关闭终端。我完全忘了怎么做。请告诉我。
答案1
(command &) && exit
例子:
(firefox &) && exit
答案2
我认为这是最好的方法:
nohup (command) &> /dev/null &
例子:
nohup firefox &> /dev/null &
编辑:“&> /dev/null &”重定向 nohup 的输出,这样您就没有日志(nohup.out)参见https://unix.stackexchange.com/questions/23010/how-to-make-nohup-not-create-any-output-files-and-so-not-eat-all-space
exit
然后我可以通过命令或单击终端窗口上的 x关闭终端而不出现警告消息