Skip to content

Instantly share code, notes, and snippets.

@arttuladhar
Created January 13, 2012 16:11
Show Gist options
  • Save arttuladhar/1607245 to your computer and use it in GitHub Desktop.
Save arttuladhar/1607245 to your computer and use it in GitHub Desktop.
Examine and alter environment variables through %ENV
#!/usr/bin/perl
foreach $key ( sort keys(%ENV) ) {
print "$key==>$ENV{$key}\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment