51Testing软件测试论坛
标题:
shell脚本中“if”语法如何嵌套?
[打印本页]
作者:
测试积点老人
时间:
2023-3-10 09:34
标题:
shell脚本中“if”语法如何嵌套?
回复可见
作者:
kallinr
时间:
2023-3-13 09:04
空格
作者:
郭小贱
时间:
2023-3-13 09:18
https://www.zhihu.com/question/385416783
可以参考这条知乎回答,比较全面的。
作者:
litingting0214
时间:
2023-3-13 09:22
if [ $packetanal_ver != 'yechang' ];then
packetpid=`ps aux|grep packetAnal|grep -v "grep"|awk '{print $2}'`
if [ "$packetpid" ];then
kill -9 $packetpid
echo "old packetAnal is killed"
作者:
qqq911
时间:
2023-3-13 10:10
if [ $packetanal_ver != 'yechang' ];then
packetpid=`ps aux|grep packetAnal|grep -v "grep"|awk '{print $2}'`
if [ "$packetpid" ];then
kill -9 $packetpid
echo "old packetAnal is killed"
作者:
bellas
时间:
2023-3-13 11:44
if [ $packetanal_ver != 'yechang' ];then
packetpid=`ps aux|grep packetAnal|grep -v "grep"|awk '{print $2}'`
if [ "$packetpid" ];then
kill -9 $packetpid
echo "old packetAnal is killed"
作者:
jingzizx
时间:
2023-3-13 12:33
没理解,按照语法来啊
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2