# Shell-Fu

## Recursive search and replace over all files

```
LC_ALL=C find . -type f -name '*.rb' -exec sed -i '' s/pattern/replacement/ {} +
```
