Skip to content

Instantly share code, notes, and snippets.

@Devp00l
Last active May 19, 2022 08:14
Show Gist options
  • Save Devp00l/abc15408a48f7cd4c95d1ac89b2e0610 to your computer and use it in GitHub Desktop.
Save Devp00l/abc15408a48f7cd4c95d1ac89b2e0610 to your computer and use it in GitHub Desktop.
search and replace
#!/bin/bash
#$1 search-word
#$2 replace-word
for i in $(ack "$1" . -l); do
sed -i "s/$1/$2/g" $i
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment