Sha256: 79870117b32c41b679bfcb11e87473d94ef7b2fc861893391dc9d7e489b2d6dc

Contents?: true

Size: 237 Bytes

Versions: 5

Compression:

Stored size: 237 Bytes

Contents

#!/usr/bin/env ruby

require 'rio'
require 'rio/argv'

# converts files given as arguments from DOS format (lines end with "\r\n")
# to Unix format (lines end with "\n").
 
RIO.ARGV.each { |file| file < file.chomp.map{ |l| "#{l}\n" } }

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
wishdev-rio-0.4.3.1 ex/tonl
rio-0.3.9 ex/tonl
rio-0.4.1 ex/tonl
rio-0.4.0 ex/tonl
rio-0.4.2 ex/tonl