1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
#!/usr/bin/perl package LocalVars; require Exporter; @ISA = qw/Exporter/; @EXPORT = qw/ $hostname $FQDN $SMTPSERVER $BBSHOME $JOBSPOOL $TMP $TAR/; # host $hostname = 'ptt'; $FQDN = 'ptt.csie.ntu.edu.tw'; $SMTPSERVER = 'ptt2.csie.ntu.edu.tw'; # dir $BBSHOME = '/home/bbs'; $JOBSPOOL = "$BBSHOME/jobspool"; $TMP = '/tmp'; # program $TAR = '/bin/tar';