From 2aacffe1a7989d62904cfcb1c8d33afc5d61fa73 Mon Sep 17 00:00:00 2001 From: adam Date: Mon, 6 Apr 2026 13:54:01 -0400 Subject: [PATCH] surely there's a smarter way to tell emacs "hey go find this thing, semantically, *in other files too*, and replace". but until then... --- bash/findAndReplaceWithRecklessAbandon.sh | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 bash/findAndReplaceWithRecklessAbandon.sh diff --git a/bash/findAndReplaceWithRecklessAbandon.sh b/bash/findAndReplaceWithRecklessAbandon.sh new file mode 100755 index 0000000..d1e66b8 --- /dev/null +++ b/bash/findAndReplaceWithRecklessAbandon.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +sed -i "s/$1/$2/g" `rg -l "$1"`