#  RedirStdOutputs.pl
#  Example 7.6:
#  ----------------------------------------
#  From "Win32 Perl Scripting: Administrators Handbook" by Dave Roth
#  Published by New Riders Publishing.
#  ISBN # 1-57870-215-1
#
#  This script illustrates redirecting STDERR into STDOUT using
#  backticks.
#
print "From the book 'Win32 Perl Scripting: The Administrator's Handbook' by Dave Roth\n\n";


my $Name = "MyScript.pl";

my @Output = `$Name 2>&1`;
print @Output;
