在后台运行程序
场景
在启动应用程序的时候,有时候并不需要时刻看着终端输出,需要将程序放到后台去执行。
解决方案
在命令行中使用nohub
命令和&
符号并将stdout
和stderr
重定向到/dev/null
,以避免程序输出到终端上。
reference
1.https://stackoverflow.com/questions/9190151/how-to-run-a-command-in-the-background-and-get-no-output (opens new window)