linux 脚本运行报错 无法找到字符串

发布于 2022-09-12 22:33:05 字数 767 浏览 24 评论 0

#!/bin/bash
pids=`lsof -i:9090|awk '{if(NR!=1&&$10=="(CLOSE_WAIT)")print $2}'`
listen=`lsof -i:9090|awk '{if(NR!=1&&$10=="(LISTEN)")print $2}'`
echo $pids
echo $listen
if [$pids];
then
   for pid in $pids
   do
      echo "kill process $pid"
      kill -9 $pid
   done
elif [$listen];
then
    echo "asdasdas" 
    echo "$listen already processing"
          
else     
    /bin/java -cp "/root/BOOT-INF/classes:/root/BOOT-INF/lib/*" com.spider.unidbgserver.UnidbgServerApplication
    echo "start process"
fi   

运行脚本后如下

root@center1:~# sh unidbg_new.sh 

25511
unidbg_new.sh: 6: unidbg_new.sh: []: not found
unidbg_new.sh: 14: unidbg_new.sh: 1: not found

为啥这个字符串[$pids] 和[$listen] 总是找不到呢?求解

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浅语花开 2022-09-19 22:33:05

建议重学 shell
if 关键字后跟命令
[test 命令的别名
注意,他是一个命令
也就是说后面的什么 $pids 啊,= 啊,甚至 ] 都是 [ 的参数
所以你得用空格隔开他们
另外你得给 [ 里面的变量加双引号,要么用 [[ ]]
你细品这个报错信息

unidbg_new.sh: 6: unidbg_new.sh: []: not found
unidbg_new.sh: 14: unidbg_new.sh: 1: not found

$listen 为空,[ $listen ] 就变成 [ ],就爆炸了
那用 [ "$listen" ] 的话,即使 $listen 为空,[ "" ] 也是合法的
综上,

- if [$pids];
+ if [ "$pids" ]
- elif [$listen];
+ elif [ "$listen" ];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文