Skip to content

Instantly share code, notes, and snippets.

View ssang4's full-sized avatar
๐Ÿ‘‹

Ang ssang4

๐Ÿ‘‹
  • Tradebyte Software GmbH
  • Germany
View GitHub Profile
@ssang4
ssang4 / replace.sh
Created November 7, 2018 09:52
Replace string for all files in a directory recursively
grep -rl "string to replace" . | xargs sed -i 's/string to replace/new string/g'