Find and Replace in the Terminal.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

notes about find and replace techniques

Date: November 12, 2020

[1m[38;2;189;147;249mgrepr[0m
[38;2;68;71;90m─────[0m

[38;2;248;248;242m[code][0m
  grepr() {grep -iRl "$1" | xargs sed -i "s/$1/$2/g"}

  ```bash
  grepr() {grep -iRl "$1" | xargs sed -i "s/$1/$2/g"}

[1m[38;2;189;147;249mgrepd[0m
[38;2;68;71;90m─────[0m

[38;2;248;248;242m[code][0m
  grepd() {grep -iRl "$1" | xargs sed -i "/^$1/d"}

[1m[38;2;189;147;249mCocSearch[0m
[38;2;68;71;90m─────────[0m

[38;2;248;248;242m[code][0m
  :CocSearch published: false -g *.md
