Ocy is a simple, temporary build files cleaner CLI written in Rust.
Ocy is short for Ocypode cordimanus, or smooth-handed ghost crab. Like all crabs of the genus Ocypode, it has one claw larger than the other (as on the banner).
Although he's so cute, ocy is a scavenger, so he can take care of your dead bytes.
cargo install ocy
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.
Why not an existing tool ?
Most of cleanup/wipe tools I found seems to focus on cleaning one single type of project.
Why not bash ?
Clever use of bash/find can give you 80% of what is doing Ocy. However if we want a little bit of security (for instance matching folders by the build
pattern may have a lot of false positive) and ergonomic such as displaying and summing folder size, something more involved is required.
It is fun to write CLI in Rust ! And the end executable will be quite small (currently around 1.1MB without too much time spent into optimizing it). Any language could have done the job here. So this is for fun and learning
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: 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 ```
ocy-core
) it should be easy to support both CLI and TUI