in reply to Re^2: How to call Linux command sequentially
in thread How to call Linux command sequentially
Could you show us how you call the command within your Perl script?$ perl -Mstrict -e 'my @out =qx{ls $ENV{HOME}/tmp}; chomp @out; print join (", " , @out), "\n";' a.out, test.c, test.dat, test.pl
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: How to call Linux command sequentially
by mv.ashwin@gmail.com (Novice) on Sep 13, 2011 at 09:22 UTC | |
by Corion (Patriarch) on Sep 13, 2011 at 09:25 UTC | |
by graff (Chancellor) on Sep 13, 2011 at 09:33 UTC |