miller/c/tools/truncate
2015-08-30 22:15:04 -04:00

5 lines
89 B
Ruby
Executable file

#!/usr/bin/env ruby
ARGV.each do |arg|
File.write(arg, File.open(arg).read.strip)
end