Very simple utility to replace(r)/delete(d) strings in text files
bash
cargo install rd
bash
rd "replace" "with" -f file.txt
by default, it uses regex, for string literals
bash
rd -s "replace" "with" -f file.txt
bash
rd "replace" "with" -f file.txt -i
bash
rd "to_delete" -f file.txt -d
bash
rd "replace" "with" -f *.txt
with fd
bash
rd "replace" "with" -f $(fd '.*\.txt')
Much faster than GNU sed (2x), but slower than sd (2x) for large files. Similar to sd for small files