RosettaCodeData/Task/Environment-variables/AWK/environment-variables-3.awk

6 lines
156 B
Awk
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
# http://ideone.com/St5SHF
BEGIN { print "# Environment:"
for (e in ENVIRON) { printf( "%10s = %s\n", e, ENVIRON[e] ) }
}
END { print "# Done." }