免费注册 查看新帖 |

Chinaunix

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

Getopt::Std参数调用的问题,请看看 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2014-12-30 14:51 |只看该作者 |倒序浏览
用Getopt::Std写了简单判断,就是 l 参数多次调用,发现下面代码行不通
hello.pl -l server -s
hello.pl -l server

都会调用if ($opt_l){ }里的block,怎么假定后面加了s 像 hello.pl -l server -s 忽略if ($opt_l)呢,感觉这太麻烦了还不如我不加模块直接操作@ARGV ,有更好的办法吗 ?

if ($opt_l){
   $host_file=$opt_l;
   print "Please input your batch command\n";
   $cmd = <STDIN>;
   &Main_cmd(\&Batch_cmd);
}
if ($opt_S){
   &Usage;
   exit(0);
}
if ($opt_l and $opt_s){
   $host_file=$opt_l;
   $cmd=$opt_s;
   $intrs=1;
   &Main_cmd(\&Batch_cmd);
}

论坛徽章:
0
2 [报告]
发表于 2014-12-30 16:29 |只看该作者
回复 1# aku1

没人回啊,实在不行 把 $opt_s放 if ($opt_l ) {}去判断了

#if ($opt_l){
#   $host_file=$opt_l;
#   print "Please input your batch command\n";
#   $cmd = <STDIN>;
#   &Main_cmd(\&Batch_cmd);


   

论坛徽章:
0
3 [报告]
发表于 2014-12-31 14:09 |只看该作者
自己改了下,好像有点sb,要仔细看下Getopt::Long,看能不能简单点
if ($opt_l){
  if (defined($opt_b)) {
   $host_file=$opt_l;
   $cmd=$opt_b;
   $intrs=1;
   &Main_cmd(\&Batch_cmd);
   }
  elsif (defined($opt_s)) {
    $host_file=$opt_l;
    $cmd=$opt_s;
    &Main_cmd(\&Scp_cmd);
    }
  elsif (defined($opt_g)) {
    $host_file=$opt_l;
    $cmd=$opt_g;
    $intrs=1;
    &Main_cmd(\&Scp_cmd);
   }
  else {
   $host_file=$opt_l;
   print "Please input your batch command\n";
   $cmd = <STDIN>;
   &Main_cmd(\&Batch_cmd);
   }
}
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP