Question

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

Était-ce utile?

La solution

Did you mean this?

my $string =qx(ls | grep test) ;
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top