8 lines
49 B
Ruby
8 lines
49 B
Ruby
|
|
|
|
while l=gets
|
|
|
|
l.gsub! /\t+/, "\t"
|
|
puts l
|
|
end
|