1#!/usr/bin/env ruby 2 3Dir.open(".").entries.grep(/.aiff$/).each do |inp| 4 out = inp.gsub(".aiff", ".wav") 5 system("sox #{inp} #{out}") 6end 7 8 9