cmdtest/t/bin/env.rb
Johan Holmberg 67a662f1c6 use env.rb and grep.rb in test
to avoid depending on some env.exe and grep.exe
on Windows.
2016-11-17 10:30:29 +01:00

7 lines
77 B
Ruby
Executable File

#!/usr/bin/ruby
for k in ENV.keys.sort
puts("%s=%s" % [k, ENV[k]])
end