Last Updated: February 25, 2016
·
449
· shairontoledo

Delimiter @ for replacers

When you have to replace any char with / in a linux editor you will write something like:

:%s/\//foo/g

The above code replace / to foo, you can use @ instead of / to delimit the values for command %s.

:%s@/@foo@g

It works on awk, sed, vi and others.

This tip is from a nice guy, I'd like share it will you too.