免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3735 | 回复: 6
打印 上一主题 下一主题

too many arguments........ [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-12-22 18:08 |只看该作者 |倒序浏览
-----------------------------------------------------分割线
#!/bin/sh
# Program:
# Kill the three processes named with 'a','b' and 'c' in absolute path.
# History:
# 2010/12/21 YangBo Fourth Release

PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH

#Tell if the three processes exist
if [ -n `ps -ef|grep $PWD/a|grep -v grep` ] &&
  [ -n `ps -ef|grep $PWD/b|grep -v grep` ] &&
  [ -n `ps -ef|grep $PWD/c|grep -v grep` ] ;then
  echo "The three processes do not exist.Program Terminate... "
  exit 0
fi

#kill the three processes named with 'a','b' and 'c' in absolute path
##kill a
if ! [ -n `ps -ef|grep $PWD/a|grep -v grep` ];then  
  kill -9 `ps -ef|grep $PWD/a|grep -v grep|awk '{print $2}'`
else
  echo "Process:"${PWD}/"a not found "
fi
##kill b
if ! [ -n `ps -ef|grep $PWD/b|grep -v grep` ];then  
  kill -9 `ps -ef|grep $PWD/b|grep -v grep|awk '{print $2}'`
else
  echo "Process:"${PWD}/"b not found "
fi
##kill c
if ! [ -n `ps -ef|grep $PWD/c|grep -v grep` ];then  
  kill -9 `ps -ef|grep $PWD/c|grep -v grep|awk '{print $2}'`
else
  echo "Process:"${PWD}/"c not found "
fi


#Tell if the three processes are still alive
if [ -n `ps -ef|grep $PWD/a|grep -v grep` ] &&
  [ -n `ps -ef|grep $PWD/b|grep -v grep` ] &&
  [ -n `ps -ef|grep $PWD/c|grep -v grep` ] ;
  then echo "The thee processes have been killed sucessfully"
fi
  
#exit
exit 0

-----------------------------------------------------------分割线
[ -n `ps -ef|grep $PWD/a|grep -v grep` ]  
[ -n `ps -ef|grep $PWD/b|grep -v grep` ]

出现错误: [too many arguments。。

问一下,有没有好的方法吗?

论坛徽章:
0
2 [报告]
发表于 2010-12-22 18:12 |只看该作者
查一下类似这种语句,看看是否返回了两个值:
kill -9 `ps -ef|grep $PWD/a|grep -v grep|awk '{print $2}'`

论坛徽章:
0
3 [报告]
发表于 2010-12-22 18:33 |只看该作者
kill 没问题,只是if的判断有问题,好像是[ ]内部的参数过多而引起的,我只是想判断某个进程是否存在,如果三个指定的进程不存在即[ -n .....]的话,显示一段语句,然后退出,

如何避免 参数过多这个问题?
`ps -ef|grep $PWD/a|grep -v grep|awk '{print $2}'` 返回一个值,进程号,运行时kill没问题

论坛徽章:
0
4 [报告]
发表于 2010-12-22 19:33 |只看该作者
没有人吗

论坛徽章:
0
5 [报告]
发表于 2010-12-22 20:35 |只看该作者
[ -n "`ps -ef|grep $PWD/b|grep -v grep`" ]

论坛徽章:
0
6 [报告]
发表于 2010-12-22 20:45 |只看该作者
对于[ ]中的变量,如何无法确保其不会为空,最好用""括起来

论坛徽章:
0
7 [报告]
发表于 2010-12-22 21:13 |只看该作者
看标题,想到xargs
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP