Skip to content

Instantly share code, notes, and snippets.

@tivrfoa
Created February 28, 2025 22:24
Show Gist options
  • Save tivrfoa/9f6274b52667898dca9d115786685637 to your computer and use it in GitHub Desktop.
Save tivrfoa/9f6274b52667898dca9d115786685637 to your computer and use it in GitHub Desktop.
Useful shell commands
# 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