linux命令后台运行

转载自:

linux命令后台运行

有两种方式:

 1. command & : 后台运行,你关掉终端会停止运行
 2. nohup command & : 后台运行,你关掉终端也会继续运行

原文地址:https://www.cnblogs.com/AbcFly/p/6403144.html