質問

The following staement in perl throws an error

my $string =qx(ls grep test) ;

…where test is some file name to be searched...

But the following statements doen't through an error

my $string =qx(ls) ;

I am working in unix solaris machine

役に立ちましたか?

解決

Did you mean this?

my $string =qx(ls | grep test) ;
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top