Help for this page

Select Code to Download


  1. or download this
    print $file $_ if s/$LeftSide/$RightSide/eegi;
    
  2. or download this
    print $_ if s/$LeftSide/eval $RightSide/egi;
    
  3. or download this
    # main.pl
    
    ...
    __DATA__
    (123),(456),(789)
    (abc),(def),(ghi)
    
  4. or download this
    # prepare_run.pl
    
    ...
    close($run);
    
    system("run.pl"); #or whatever the the equivalent of your OS.
    
  5. 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)
    
  6. or download this
    (123)
    (456)
    ...
    (abc)
    (def)
    (ghi)