home *** CD-ROM | disk | FTP | other *** search
- #!/usr/bin/perl
-
-
-
-
- use lib qw(/usr/bin/perl-install .);
- use common qw(:file);
- use commands;
-
- my $progname = basename($0);
-
- # hack as some functions are defined by perl... so chmod -> chmod_
- &{$commands::{$progname} || $commands::{$progname . "_"} || \&err}(@ARGV), exit 0;
-
- sub err { die "$0: unknown program (unimplemented)\n"; }
-