Difference between revisions of "Perl"

From Server Knowledge Base
Jump to navigationJump to search
(Created page with "To be Edited. == Print Environment Information == perl -e 'print "$_=$ENV{$_}\n" for keys %ENV'")
 
m
 
Line 1: Line 1:
To be Edited.
To be Edited.
== Echo equivalent ==
print "Hello World.\n";


== Print Environment Information ==
== Print Environment Information ==


perl -e 'print "$_=$ENV{$_}\n" for keys %ENV'
perl -e 'print "$_=$ENV{$_}\n" for keys %ENV'

Latest revision as of 07:44, 5 April 2013

To be Edited.

Echo equivalent

print "Hello World.\n";

Print Environment Information

perl -e 'print "$_=$ENV{$_}\n" for keys %ENV'