diff --git a/fish/quick-sed b/fish/quick-sed new file mode 100644 index 0000000..5f0a62f --- /dev/null +++ b/fish/quick-sed @@ -0,0 +1,7 @@ +#!/usr/bin/env fish + +function quick-sed -d 'Recursively sed files in the current directory' -a i o + find . -type f -exec sed -i -e 's/'$i'/'$o'/g' {} \; +end + +## EOF