Linux中 如何让进程在后台中运行
在Linux中,如果要让进程再后台运行,一般情况下,我们再命令后面机上&即可,实际上,这样是将命令放入到一个作业队列中了:
$ (./test.sh &)$ ps -ef | grep test515 410 1 0 11:49 ? 00:00:00 /bin/sh ./test.sh515 12483 21734 0 11:59 pts/12 00:00:00 grep test
?