首页 > 代码库 > 后台执行shell脚本

后台执行shell脚本


执行方式:

nohup sh export_data.sh 20150102 >20150102.log 2>&1 &
[1] 29531

其中 0、1、2分别代表如下含义:
 0 – stdin (standard input)
 1 – stdout (standard output)
 2 – stderr (standard error)


nohup+最后面的& 是让命令在后台执行

>out.log 是将信息输出到out.log日志中

2>&1 是将标准错误信息转变成标准输出,这样就可以将错误信息输出到out.log 日志里面来。


查看后台是否运行此进程:

ps -ef | grep 29531
mobile   29531  6103  0 19:59 pts/16   00:00:00 sh export_data.sh 20150102


好处:

在家使用vpn远程登录公司集群,不用担心因网络不好而使任务中断。


后台执行shell脚本