DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Ruby To Convert All Files In Dir (that End In [0-9].jpg) From Jpg To Pbm
// Ruby to convert all files in dir (that end in [0-9].jpg) from jpg to pbm
Dir.open('.').each { |f| `convert #{f} #{f[0..-5]}.pbm` if f =~ /[\d].jpg$/ }




