Skip to content

Instantly share code, notes, and snippets.

@matheusemm
Created October 31, 2022 08:48
Show Gist options
  • Save matheusemm/267ef8c4082b4358e39c5ec929697922 to your computer and use it in GitHub Desktop.
Save matheusemm/267ef8c4082b4358e39c5ec929697922 to your computer and use it in GitHub Desktop.
Various useful shell commands
# Find and delete all `target` subdirectories
find . -type d -name target -prune -exec rm -r {} +
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment