pyratelog

personal blog
git clone git://git.pyratebeard.net/pyratelog.git
Log | Files | Refs | README

commit 047acdee99c314bf02059afb432cf769cd53e5a1
parent da02eddf6e2d679141adfe686e3d5b5a9a11fb25
Author: pyratebeard <root@pyratebeard.net>
Date:   Mon, 28 Feb 2022 23:03:45 +0000

delimitless

Diffstat:
Mentry/delimitless.md | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/entry/delimitless.md b/entry/delimitless.md @@ -8,7 +8,7 @@ You will also probably be aware the need to escape any slash in the string you'r sed s/f\/o\/o/b\/a\/r/g file ``` -What some people may not know is you can use different delimiters to save yourself escaping any occurrence of slash in the string. +What you may not know is you can use different delimiters to save yourself escaping any occurrence of slash in the string. ``` sed s%foo%bar%g file @@ -22,3 +22,5 @@ According to section 4.3 of the `sed` Info document you should be able to use "a ``` info sed -n "regexp addresses" ``` + +Do you have a preferred delimiter or do you like a bit of variety?