![]() |
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
$instrument = 'saxophone'; $littleInstrument = 'soprano $instrument'; # the string value of $littleInstrument includes the # text "$instrument" - probably an error in this case.
$instrument = "saxophone"; $littleInstrument = "soprano $instrument"; # the string value of $littleInstrument is "soprano saxophone"
$memberList = "/usr/people/conductor/roster"; $memberCount = `wc -l $memberList`; # $memberCount is the number of members in the conductor's roster, # assuming that each member is listed on a separate line.
# the sendmail binary.
$sendmail = "/usr/lib/sendmail";
# base of your httpd installation.
$basedir = '/www';
# log file
$logfile = "$basedir/etc/logs/$progname.log";
# today
$date = `date`;
![]()
The National Center for Supercomputing Applications
University of Illinois at Urbana-Champaign
[email protected]
Last modified: June 19, 1997