An open API service indexing awesome lists of open source software.

https://github.com/bestgopher/cargo-rclean

Execute cargo clean for all cargo projects in the directory.
https://github.com/bestgopher/cargo-rclean

cargo cargo-subcommand rust

Last synced: 2 months ago
JSON representation

Execute cargo clean for all cargo projects in the directory.

Awesome Lists containing this project

README

          

# cargo-rclean
Execute `cargo clean` for all cargo projects in the directory.

# install
```shell
➜ cargo install --git https://github.com/bestgopher/cargo-rclean
```

# usage
```shell
➜ cargo rclean
```

# Examples
There are three cargo projects in current working directory:
```shell
➜ tree -L 2
.
├── rclean_test_1
│   ├── Cargo.lock
│   ├── Cargo.toml
│   ├── src
│   └── target
├── rclean_test_2
│   ├── Cargo.lock
│   ├── Cargo.toml
│   ├── src
│   └── target
└── rclean_test_3
├── Cargo.lock
├── Cargo.toml
├── src
└── target
```
Then I execute: `cargo rclean` :
```shell
➜ tree -L 2
.
├── rclean_test_1
│   ├── Cargo.lock
│   ├── Cargo.toml
│   └── src
├── rclean_test_2
│   ├── Cargo.lock
│   ├── Cargo.toml
│   └── src
└── rclean_test_3
├── Cargo.lock
├── Cargo.toml
└── src

```
All targets have been removed.