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 all cargo.toml in folders linked from current directory and run cargo clean in each one directories | |
find . -name Cargo.toml -execdir cargo clean \; |