shell脚本以下报错怎么解决
答案:1 悬赏:30 手机版
解决时间 2021-01-26 15:54
- 提问者网友:沦陷
- 2021-01-26 00:01
shell脚本以下报错怎么解决
最佳答案
- 五星知识达人网友:行雁书
- 2021-01-26 00:34
这个错误:
./fpf-excel2db-daily-restart.sh: line 11: return: ps: numeric argument required
num=`ps -ef|grep $proc_name|grep -v grep|wc -l`
或者
num=$(ps -ef|grep $proc_name|grep -v grep|wc -l)
你写的有可能是
num='ps -ef|grep $proc_name|grep -v grep|wc -l'
写成了单引号这个错误:
./fpf-excel2db-daily-restart.sh: line 15: if[ 255 -eq 0 ]: command not found
./fpf-excel2db-daily-restart.sh: line 16: syntax error near unexpected token `then'
./fpf-excel2db-daily-restart.sh: line 16: `then '
if [ $? -eq 0 ]; then
你的好像是
if[ $? -eq 0 ]; then
if后面少个空格
./fpf-excel2db-daily-restart.sh: line 11: return: ps: numeric argument required
num=`ps -ef|grep $proc_name|grep -v grep|wc -l`
或者
num=$(ps -ef|grep $proc_name|grep -v grep|wc -l)
你写的有可能是
num='ps -ef|grep $proc_name|grep -v grep|wc -l'
写成了单引号这个错误:
./fpf-excel2db-daily-restart.sh: line 15: if[ 255 -eq 0 ]: command not found
./fpf-excel2db-daily-restart.sh: line 16: syntax error near unexpected token `then'
./fpf-excel2db-daily-restart.sh: line 16: `then '
if [ $? -eq 0 ]; then
你的好像是
if[ $? -eq 0 ]; then
if后面少个空格
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯