#  Test.pl
#  Example 1.1:
#  ----------------------------------------
#  From "Win32 Perl Scripting: Administrators Handbook" by Dave Roth
#  Published by New Riders Publishing.
#  ISBN # 1-57870-215-1
#
#  This script really does nothing. It is simply an example to illustrate
#  how a script can use the "sha-bang" (#!) line.
#
#!perl -w -d
print "From the book 'Win32 Perl Scripting: The Administrator's Handbook' by Dave Roth\n\n";

my @Output = 'c:\\temp\\perltest.pl';
print @Output;

