nohup用来将程序后台执行
新建一个test1.sh文件,如下:
#!/bin/bash
declare -a modle
modle[0]=4
name=${modle[0]}."cfg"
sleep 100
echo $name
在终端运行
nohup /home/sunflowerfsw/test1.sh &
格式 nohup /./test.sh &
回车后会appending output to nohup.out
可用 jobs命令查看后台程序运行状况,test1.sh运行结果会放在同目录下的nohup.out文件
打开,里面有结果4.cfg