- or download this
print $file $_ if s/$LeftSide/$RightSide/eegi;
- or download this
print $_ if s/$LeftSide/eval $RightSide/egi;
- or download this
# main.pl
...
__DATA__
(123),(456),(789)
(abc),(def),(ghi)
- or download this
# prepare_run.pl
...
close($run);
system("run.pl"); #or whatever the the equivalent of your OS.
- or download this
# run.pl, will be created after running "prepare_run.pl" while using "
+main.pl" as a template.
...
__DATA__
(123),(456),(789)
(abc),(def),(ghi)
- or download this
(123)
(456)
...
(abc)
(def)
(ghi)