Skip to content

Instantly share code, notes, and snippets.

@jmbrunskill
Created May 17, 2024 00:30
Show Gist options
  • Save jmbrunskill/c89856ec957208e22322cfa58c5d8a24 to your computer and use it in GitHub Desktop.
Save jmbrunskill/c89856ec957208e22322cfa58c5d8a24 to your computer and use it in GitHub Desktop.
Clean out all your cargo/rust directories
# Find all cargo.toml in folders linked from current directory and run cargo clean in each one directories
find . -name Cargo.toml -execdir cargo clean \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment