Skip to content

Instantly share code, notes, and snippets.

@arkiver
Created October 2, 2013 17:03
Show Gist options
  • Save arkiver/6796922 to your computer and use it in GitHub Desktop.
Save arkiver/6796922 to your computer and use it in GitHub Desktop.
Change extensions of all files in a directory
require 'fileutils'
Dir.glob("#{Dir.pwd}/path/to/folder/*.html.erb").map{|f| FileUtils.mv f, f.gsub('.erb', '') + '.haml'}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment