jalebie has asked for the wisdom of the Perl Monks concerning the following question:
#script1.prl use diagnostics -verbose; use FileHandle; FileHandle::autoflush STDOUT 1; print "In script 1\n"; unlink ("gg"); system ("script2.prl > gg"); FileHandle::autoflush STDOUT 1; exit;
#script 2 use diagnostics -verbose; use FileHandle; FileHandle::autoflush STDOUT 1; print "In script 2\n"; system ("script3.prl"); FileHandle::autoflush STDOUT 1; exit;
#script3 use diagnostics -verbose; use FileHandle; FileHandle::autoflush STDOUT 1; print "In script 3\n"; FileHandle::autoflush STDOUT 1; exit;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
(tye)Re: Perl redirection in Win-NT
by tye (Sage) on Aug 16, 2001 at 01:33 UTC | |
|
Re: Perl redirection in Win-NT
by Rudif (Hermit) on Aug 16, 2001 at 01:37 UTC | |
by Anonymous Monk on Aug 16, 2001 at 02:47 UTC | |
by Rudif (Hermit) on Aug 16, 2001 at 03:07 UTC | |
|
Re: Perl redirection in Win-NT
by RayRay459 (Pilgrim) on Aug 16, 2001 at 01:59 UTC |