震惊,nohup 这样写不用回车
nohup /opt/test/xunhaun.sh &> run.log &
脚本内容
[root@node1 /opt/test]# cat xunhaun.sh
#!/bin/bash
a=0
while true;do
echo $a
sleep 1
let a++
done
nohup /opt/test/xunhaun.sh &> run.log &
[root@node1 /opt/test]# cat xunhaun.sh
#!/bin/bash
a=0
while true;do
echo $a
sleep 1
let a++
done