shell脚本后台运行

#!/bin/sh
cd /opt/xyrpg/rpgserver/webserver/
nohup ./webServer &

nohup 你的shell命令 &

这样就可以将命令丢到后台运行

nohup命令可以让你的shell命令忽略SIGHUP信号,即可以使之脱离终端运行;“&”可以让你的命令在后台运行。

你可能感兴趣的:(vim,shell脚本后台运行)