标签:font 显示 hup 传值 awk 参数 通过 test 端口
pid=`lsof -i:3001|grep -v ‘PID‘|grep -w ‘(LISTEN)‘|awk ‘{print $2}‘ ` echo $pid if [ "$pid" != "" ];then kill -9 $pid echo "kill PID $pid successed!" fi
nohup npm run start >run.log 2>&1 & exit
3.shell脚本传值
sh testsh.sh 1 testsh中通过 ‘$1‘ 取到参数, $#是个数 $*显示所有的参数.
标签:font 显示 hup 传值 awk 参数 通过 test 端口
原文地址:https://www.cnblogs.com/imaye/p/10490913.html