J Jonathan J New member May 15, 2009 #1 What does the following PERL snippet do? Explain the result. open (BLAH, "$ARGV[0]"); while (<BLAH>) { tr /a-z/A-Z/; print $_; }
What does the following PERL snippet do? Explain the result. open (BLAH, "$ARGV[0]"); while (<BLAH>) { tr /a-z/A-Z/; print $_; }