maroph

Perl: Print all environment variables

Dec 12th, 2014
370
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 0.07 KB | None | 0 0
  1. foreach (sort keys %ENV) {
  2.     printf "%-15s : %s\n", $_, $ENV{$_};
  3. }
Advertisement
Add Comment
Please, Sign In to add comment