- 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);
...
}
- or download this
package Parse;
sub parse_file {
...
# put data in database, etc. this all works file
}
return 1;
- or download this
package Moving;
sub move_file {
...
# move a file, rename it, etc
}
return 1;