程序挂在后台
nohup
nohup 命令 &
这样的命令会将屏幕的输出重定向到同目录的nohup.out中,可以使用 > 来重定向输出。
nohup 命令 > .log &
例如:nohup python a.py > a.log &
nohup sh a.sh > a.log &
tmux
tmux是一款窗口管理软件
1、安装
参考Mac常用软件
2、使用
参考tmux指南
3、常用命令
建立一个新窗口:tmux new -s "名字"
查看有哪些新窗口:tmux -ls
关掉后台的窗口:tmux tmux kill-window -t "名字"
切出:Ctrl b + d 切出tmux窗口(tmux使用ctrl b进入命令模式)