mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-20 18:10:07 +00:00
5 lines
89 B
Ruby
Executable file
5 lines
89 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
|
|
ARGV.each do |arg|
|
|
File.write(arg, File.open(arg).read.strip)
|
|
end
|