Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
the script two is@files =<C:\\orant\\FORMS60\\forms\\Fapidk\\source\\msvc\\changecolor\ +\Debug\\forms\\*.fmb>; foreach $file (@files) { print $file "\n"; system "changecolor.exe form=$file"; }
i want to combine these two as one script can any one help me on suggesting me with any ideas. thanks@files1 =<C:\\orant\\FORMS60\\forms\\forms_up\\*.fmb>; foreach $file (@files1) { print $file . "\n"; system "IFCMP60 USERID=rmetts/rmetts\@dlegtst1 module=$file module_ac +cess=file module_type=form" # print "c:\\orant\\bin\\IFCMP60 USERID=rmetts/rmetts\@dlegtst1 modul +e=$file module_access=file module_type=form" }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: combine two scripts in to one
by Zaxo (Archbishop) on May 14, 2007 at 15:32 UTC | |
by subha (Initiate) on May 14, 2007 at 17:30 UTC | |
|
Re: combine two scripts into one
by subha (Initiate) on May 14, 2007 at 15:15 UTC | |
by marto (Cardinal) on May 14, 2007 at 15:30 UTC | |
by subha (Initiate) on May 14, 2007 at 17:17 UTC | |
by marto (Cardinal) on May 14, 2007 at 21:16 UTC | |
by swampyankee (Parson) on May 14, 2007 at 19:09 UTC |