#  BackTick_LongFileName_With_Spaces.pl
#  Example 7.4:
#  ----------------------------------------
#  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 and has embedded spaces.
#
print "From the book 'Win32 Perl Scripting: The Administrator's Handbook' by Dave Roth\n\n";


my $Name = "My Long Perl Script Name.pl";
# Next line will fail since the long file name has spaces
my @Output = `$Name`;
print @Output;
