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
Inplace Substitutions
Place all occurrences of "old value" with "new value" in all txt files.
ruby -p -i -e '$_.gsub!("old value", "new value")' *.txt





