$ cat LinuxCommandsPaths.pm package LinuxCommandsPaths ; use strict ; require Exporter; my @ISA = qw(Exporter); my @EXPORT_OK = qw( $cat $cleartool $chkconfig ) ; our $cat = '/bin/cat' ; our $cleartool = '/usr/atria/bin/cleartool' ; our $chkconfig = '/sbin/chkconfig' ; 1;