免费注册 查看新帖 |

Chinaunix

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

在perl中使用的执行系统调用和shell中的输出不同,谁有时间帮我看看啊? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2014-09-28 16:10 |只看该作者 |倒序浏览
程序执行:
xxxx#[/tmp]perl aa.pl
Use of uninitialized value in concatenation (.) or string at aa.pl line 2.
   LV Name                     /dev/vg00/lvol1
   LV Name                     /dev/vg00/lvol2
   LV Name                     /dev/vg00/lvol3
   LV Name                     /dev/vg00/lvol4
   LV Name                     /dev/vg00/lvol5
   LV Name                     /dev/vg00/lvol6
   LV Name                     /dev/vg00/lvol7
   LV Name                     /dev/vg00/lvol8

perl 脚本内容:
xxxx#[/tmp]cat aa.pl
#!/usr/bin/perl -w
$temp_lv_list = `vgdisplay -v vg00|grep lvol|awk '{print $3}'`;
print $temp_lv_list;

直接在shell中执行命令,可以得到lvol名的信息,如下:
HA5-BF01#[/tmp]vgdisplay -v vg00|grep lvol|awk '{print $3}'
/dev/vg00/lvol1
/dev/vg00/lvol2
/dev/vg00/lvol3
/dev/vg00/lvol4
/dev/vg00/lvol5
/dev/vg00/lvol6
/dev/vg00/lvol7
/dev/vg00/lvol8

在perl中为什么总有LV name这些无用信息?尝试过给在perl中使用绝对路径的awk,但是结果还是一样的。

论坛徽章:
3
CU十二周年纪念徽章
日期:2013-10-24 15:41:34子鼠
日期:2013-12-14 14:57:19射手座
日期:2014-04-25 21:23:23
2 [报告]
发表于 2014-09-28 16:42 |只看该作者
LZ  你累不。。。在perl调shell。。。
  1. vgdisplay -v vg00|perl -lne 'print $1 if /LV\s+Name\s+(\S+)/'
复制代码

论坛徽章:
8
技术图书徽章
日期:2013-08-22 11:21:28未羊
日期:2015-01-19 22:22:25巳蛇
日期:2014-08-11 16:53:08子鼠
日期:2014-05-29 09:04:44摩羯座
日期:2014-04-11 14:15:07丑牛
日期:2014-01-24 12:41:28金牛座
日期:2013-11-21 17:38:28射手座
日期:2015-01-21 08:50:32
3 [报告]
发表于 2014-09-28 16:50 |只看该作者
楼主,你忘记了在perl中调用命令是要转义的!

论坛徽章:
0
4 [报告]
发表于 2014-09-28 16:50 |只看该作者
hi mcshell,
同你类似的方法我用过,但是不成的,写到perl代码中就不可用。在shell下执行没问题.
vgdisplay -v vg00|perl -lne 'print $1 if /LV\s+Name\s+(\S+)/'
/dev/vg00/lvol1
/dev/vg00/lvol2
/dev/vg00/lvol3
/dev/vg00/lvol4
/dev/vg00/lvol5
/dev/vg00/lvol6
/dev/vg00/lvol7
/dev/vg00/lvol8

HA5-BF01#[/tmp]cat aa.pl
#!/usr/bin/perl -w
#$temp_lv_list = `vgdisplay -v vg00|grep lvol|awk '{print $3}'`;
$temp_lv_list = `vgdisplay -v vg00|perl -lne 'print $1 if /LV\s+Name\s+(\S+)/'`;
print $temp_lv_list;
HA5-BF01#[/tmp]perl aa.pl
Unrecognized escape \s passed through at aa.pl line 3.
Unrecognized escape \s passed through at aa.pl line 3.
Unrecognized escape \S passed through at aa.pl line 3.
Use of uninitialized value in concatenation (.) or string at aa.pl line 3.
HA5-BF01#[/tmp]

我以前测试过:
vgdisplay -v vg00|grep lvol|perl -lane 'print $F[2]'

论坛徽章:
0
5 [报告]
发表于 2014-09-28 16:54 |只看该作者
多谢huang6894,是转义的问题,多谢\$.

论坛徽章:
3
CU十二周年纪念徽章
日期:2013-10-24 15:41:34子鼠
日期:2013-12-14 14:57:19射手座
日期:2014-04-25 21:23:23
6 [报告]
发表于 2014-09-28 16:55 |只看该作者
本帖最后由 mcshell 于 2014-09-28 16:56 编辑

回复 4# ts99
  1. my $command = `vgdisplay -v  vg00`;
  2. while( $command =~/LV\s+Name\s+(\S+)/g){
  3. print $1,"\n";
  4. }
复制代码

论坛徽章:
3
CU十二周年纪念徽章
日期:2013-10-24 15:41:34子鼠
日期:2013-12-14 14:57:19射手座
日期:2014-04-25 21:23:23
7 [报告]
发表于 2014-09-28 16:58 |只看该作者
LZ 非要这样。。。。
  1. $temp_lv_list = `vgdisplay -v vg00|grep lvol|awk '{print \$3}'`;
复制代码

论坛徽章:
0
8 [报告]
发表于 2014-09-28 18:10 |只看该作者
又遇到问题了,呵呵。脚本内容如下:
HA5-BF01#[/tmp]cat aa.pl
#!/usr/bin/perl
$vgname = "vg00";
@temp_lv_list = `vgdisplay -v $vgname|grep lvol|awk '{print \$3}'`;  # 这部分执行时没有问题
print " @temp_lv_list \n";

foreach $lv_name (@temp_lv_list){
        $stand_result = "Mirror copies               1";
       $check_lv_mirror = `lvdisplay $lv_name | grep Mirror`;#为什么到这里就有问题了呢?

        if($check_lv_mirror =~ /$stand_result/m){
                print "$lv_name mirror is ok \n\n";}
        else{
                print "$lv_name mirror is not ok, please check your VG mirror \n";
                }               
}      
HA5-BF01#[/tmp]


HA5-BF01#[/tmp]perl aa.pl
/dev/vg00/lvol1
/dev/vg00/lvol2
/dev/vg00/lvol3
/dev/vg00/lvol4
/dev/vg00/lvol5
/dev/vg00/lvol6
/dev/vg00/lvol7
/dev/vg00/lvol8

sh[2]: Syntax error at line 2 : `|' is not expected.
/dev/vg00/lvol1
mirror is ok

sh[2]: Syntax error at line 2 : `|' is not expected.
/dev/vg00/lvol2
mirror is ok

sh[2]: Syntax error at line 2 : `|' is not expected.
/dev/vg00/lvol3
mirror is ok

sh[2]: Syntax error at line 2 : `|' is not expected.
/dev/vg00/lvol4
mirror is ok

sh[2]: Syntax error at line 2 : `|' is not expected.
/dev/vg00/lvol5
mirror is ok

sh[2]: Syntax error at line 2 : `|' is not expected.
/dev/vg00/lvol6
mirror is ok

sh[2]: Syntax error at line 2 : `|' is not expected.
/dev/vg00/lvol7
mirror is ok

sh[2]: Syntax error at line 2 : `|' is not expected.
/dev/vg00/lvol8
mirror is ok

HA5-BF01#[/tmp]

论坛徽章:
0
9 [报告]
发表于 2014-09-28 18:38 |只看该作者
知道为什么了,$lv_name多了一个换行符
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP