in reply to lines written to stdout by a backtick command
When I run this:
use warnings; use strict; print `Perl noname2.pl`;
where noname2.pl contains:
use warnings; use strict; print "This is noname2.pl\n";
I get:
This is noname2.pl
which is what I would expect. What are you doing that is different?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: lines written to stdout by a backtick command
by oceanic (Novice) on Aug 15, 2005 at 06:19 UTC | |
|
Re^2: lines written to stdout by a backtick command
by oceanic (Novice) on Aug 15, 2005 at 05:58 UTC |