summaryrefslogtreecommitdiff
path: root/add-ln
blob: c98f0a03f2c72b886e969e57a844524fd6c169c2 (plain)
1
2
3
4
5
6
7
#!/usr/bin/env ruby

i = 0
while line = STDIN.gets
  puts "#{i}\t#{line}"
  i += 1
end