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
Rename Old HTML Views For Rails 2
# Snagged from http://softiesonrails.com/2007/7/11/upgrading-your-views-to-rails-2-0 for old in `find app/views -name *.rhtml`; do svn mv $old `dirname $old`/`basename $old .rhtml`.html.erb; done





