Skip to content

Instantly share code, notes, and snippets.

@nuria
Created January 14, 2025 00:35
Show Gist options
  • Save nuria/5ab9ef512ab01fbc6d11c4b3ed32ce4c to your computer and use it in GitHub Desktop.
Save nuria/5ab9ef512ab01fbc6d11c4b3ed32ce4c to your computer and use it in GitHub Desktop.
unix one liners
# Find files in which text occurs and change them in place
find . | xargs grep -r snapshot_dateint | cut -d":" -f1 | xargs -I {} sed -i "" 's/snapshot_dateint/dateint/g' {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment