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