Вопрос

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