Skip to content

Instantly share code, notes, and snippets.

@mamedshahmaliyev
Last active June 13, 2021 10:29
Show Gist options
  • Save mamedshahmaliyev/e734791f11b390a656c92079503d136c to your computer and use it in GitHub Desktop.
Save mamedshahmaliyev/e734791f11b390a656c92079503d136c to your computer and use it in GitHub Desktop.
Search and Replace - grep sed
grep -rl "old" . | xargs sed -i '' 's/old/new/g'
escape single quote with: '\''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment