Find and Replace in the Terminal. ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ notes about find and replace techniques Date: November 12, 2020 grepr ───── [code] grepr() {grep -iRl "$1" | xargs sed -i "s/$1/$2/g"} ```bash grepr() {grep -iRl "$1" | xargs sed -i "s/$1/$2/g"} grepd ───── [code] grepd() {grep -iRl "$1" | xargs sed -i "/^$1/d"} CocSearch ───────── [code] :CocSearch published: false -g *.md