在Linux终端运行命令的时候,在命令末尾加上 & 符号,就可以让程序在后台运行:

    1. jobs -l
    2. #查看运行中的程序
    3. fg %[number]
    4. #把程序调到前台
    5. kill %[number]
    6. #终止程序