nohup sh /home/xxx/test.sh > test.log &
通过nohup指定后台运行,同时将日志输出定位到test.log
注意:
1. 通过 jobs 查看后台运行的任务
2. 使用 bg 任务id 将任务置为后台任务
3. 使用 fg 任务id 将任务置为前台任务