Skip to content

Instantly share code, notes, and snippets.

@janfri
Created January 4, 2011 09:06
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save janfri/764563 to your computer and use it in GitHub Desktop.
Save janfri/764563 to your computer and use it in GitHub Desktop.
Dir['**/*.html'].each do |filename|
puts filename
data = File.read(filename).encode('UTF-8')
File.open(filename, 'w') do |handle|
handle.write(data)
end
end; nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment