This is a recursive version of sed. It also solves a few of the other limitations of sed, including:
* Easily see which files will be changed ahead of time
* Save original files - in case you need them later
* Test sed expressions easily
rsed [OPTIONS] [files]
-c [current] search string
-r [replacement] replacement string
-t [directory] temporary directory
-v verbose mode
-q quiet mode
-nf do not exit on failure
-d delete files after operation is complete
-nocolor turn color off
If -c is specified but -r is not the script performs a test run without modifying any of the files
download /
view /
gpl