Search Results

26
votes

What GNU/Linux command-line tool would I use for performing a search and replace on a file?

$ sed 's/a.*b/xyz/g;' old_file > new_file GNU sed (which you probably have) is even more versatile: $ sed -r --in-place 's/a(.*)b/x\1y/g;' your_file …
14
votes

Why are regular expressions such a complicated, cryptic mess?

They are cryptic because they are a DSL (Domain Specific Language) and they need to convey a lot of information in a few characters. It wouldn't be practical to use a long notation, e.g.: …