Skip to content

Instantly share code, notes, and snippets.

@clarkritchie
Last active July 6, 2024 01:03
Show Gist options
  • Save clarkritchie/4e1e365085675995d9726d70cd87b9a3 to your computer and use it in GitHub Desktop.
Save clarkritchie/4e1e365085675995d9726d70cd87b9a3 to your computer and use it in GitHub Desktop.
Silver Searcher Search and Replace
# function agr { ag -0 -l "$1" | xargs -0 perl -pi.bak -e "s/$1/$2/g"; }
function agr() { [ -z "$1" ] && { echo "Error: First argument is empty. Exiting gracefully."; return 1; }; ag -0 -l "$1" | xargs -0 perl -pi.bak -e "s/$1/$2/g"; }
export -f agr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment