Ocy project cleaner

Ocy is a simple, temporary build files cleaner CLI written in Rust.

Motivation

I use to play a lot with several languages / techs and regularily end up with GB used by temporary build outputs on my litte Macbook Pro SSD.

Each build/project system have its own convention for storing temporary build files (i.e Cargo will use target, gradle will use build, etc ...) and I wanted to have a quick tool for wiping them securely.

Supported rules

Ocy is based on the idea of rules for detecting projects. In the current form a pattern is given for detecting the project, and another pattern for files and folders to delete.

| Rule name | Project matcher | Files to delete | | --------- | ---------------- | --------------- | | Cargo | Cargo.toml | target | | Gradle | build.gradle | build | | GradleKTS | build.gradle.kts | build | | Maven | pom.xml | target | | NodeJS | * | node_modules | | XCode | * | DerivedData | | SBT | build.sbt | target | | SBT | plugins.sbt | target |

Usage

``` Usage: ocy [OPTIONS]

Optional arguments: -h, --help print help message -i, --ignores IGNORES ignore this path -v, --version print version -a, --all walk into hidden dirs ```

Future plans