#  BackTick_LongFileName.pl
#  Example 7.3:
#  ----------------------------------------
#  From "Win32 Perl Scripting: Administrators Handbook" by Dave Roth
#  Published by New Riders Publishing.
#  ISBN # 1-57870-215-1
#
#  This script creates a new process using backticks.
#  Notice that the process created is based on a Perl script
#  with a .pl extension.
#
print "From the book 'Win32 Perl Scripting: The Administrator's Handbook' by Dave Roth\n\n";


my $Name = "MyLongPerlScriptName.pl";
my @Output = `$Name`;
print @Output;
