@EggGump
2018-08-27T17:36:35.000000Z
字数 263
阅读 495
命令后台运行总结
linux
- jobs -l 查看后台运行的命令,最前面的数字就是标号
- ctrl + z:将前台正在运行的命令移到后台并暂停
- bg %[] :让后台号为[]的程序运行
- command &:让command命令在后台运行
- fg %[]:让后台标号为[]的程序到前台运行
- kill %[]:结束后台标号为[]的命令
- nohup command &:让command 在后台运行,并且关闭当前窗口后台命令不会退出,将命邻输出打印至nohup.out
- nohup command > myfile.out 2>&1 & 与上一个相同,但是命令输出打印到myfile.out