in reply to Re^2: problem in running UNIX command through perl
in thread problem in running UNIX command through perl
That keeps you from having to escape quotes, etc.my $cmd = qq{ egrep -f "$_proj_file" "$_running_file" > "$_admin_temp_ +file" }; my $result = `$cmd`; # or even qx{$cmd}
|
|---|