一般在linux下nohup格式:
nohup command # 或者 nohup command &
./command.sh > output # 其中的 > 就是标准输出符号,其实是 1>output 的缩写 ./command.sh 2> output # 这里的2>就是将标准错误输出到output文件里。 # 而 0< 则是标准输入了
发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/175875.html原文链接:https://javaforall.net
