Created
February 28, 2025 22:24
-
-
Save tivrfoa/9f6274b52667898dca9d115786685637 to your computer and use it in GitHub Desktop.
Useful shell commands
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 that contain the string STR and delete them | |
find src/main/java -type f -exec grep -q "STR" {} \; -delete | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment