Created
January 14, 2025 00:35
-
-
Save nuria/5ab9ef512ab01fbc6d11c4b3ed32ce4c to your computer and use it in GitHub Desktop.
unix one liners
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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