Skip to content

Instantly share code, notes, and snippets.

@taskie
Last active August 29, 2015 14:04
Show Gist options
  • Save taskie/154c666db67e02280fe5 to your computer and use it in GitHub Desktop.
Save taskie/154c666db67e02280fe5 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
Dir.chdir($*[0]) if $*[0]
open("Encoding Errors.txt") do |f|
f.each do |line|
org, new = line.split("->").map{|x| x.strip}
if new && new != "New File Name"
`mv "#{new}" "#{org}"`
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment