Help for this page

Select Code to Download


  1. or download this
    use Parse; # my custom Parse.pm in /etc/perl/ 
    <use Moving; # my custom Moving.pm in /etc/perl ..... 
    ...
       Moving::move_file($file); 
       ...
    }
    
  2. or download this
    package Parse; 
    sub parse_file { 
    ...
      # put data in database, etc.  this all works file 
    } 
    return 1;
    
  3. or download this
    package Moving;
    sub move_file {
    ...
      # move a file, rename it, etc
    } 
    return 1;