Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
I need to open that file and run each script at the time : I tried somthing like-- @@FILES_TO_RUN /dir/scripts/script1.pl /dir/scripts/script2.pl /dir/scripts/script3.pl /dir/scripts/script4.pl
but not working . thankswhile (<FILES_TO_RUN>) { chomp; system(qq($_)); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: executing script one at the time
by tilly (Archbishop) on Feb 16, 2004 at 21:43 UTC | |
|
Re: executing script one at the time
by Vautrin (Hermit) on Feb 16, 2004 at 21:49 UTC | |
|
Re: executing script one at the time
by CountZero (Bishop) on Feb 16, 2004 at 21:36 UTC | |
|
Re: executing script one at the time
by ChrisR (Hermit) on Feb 16, 2004 at 21:34 UTC | |
|
Re: executing script one at the time
by makar (Novice) on Feb 17, 2004 at 04:57 UTC |