DEBSOURCES
Skip Quicknav
sources / genometools / 1.6.1%2Bds-3 / scripts / dos2unix
12345678
#!/usr/bin/env ruby regex = /\r\n/ newstring = "\n" ARGF.each{ |line| line.gsub!( regex, newstring ) puts line }