Use while loop to display all entries in ENV
while(($key, $value) = each(%ENV)) { print "$key => $value\n"; }