Crates.io | file-sniffer |
lib.rs | file-sniffer |
version | 3.0.1 |
source | src |
created_at | 2017-05-28 02:47:38.989182 |
updated_at | 2017-06-16 05:06:22.622361 |
description | Command-line tool to find build artifacts and junk on your computer. |
homepage | https://github.com/vmchale/file-sniffer |
repository | https://github.com/vmchale/file-sniffer |
max_upload_size | |
id | 16566 |
size | 73,087 |
If you do a significant amount of programming, you'll probably end up with
build artifacts scattered about. sniff
is a tool to help you find those
artifacts. It's especially useful when you're writing build systems,
because you can make sure your clean
command gets everything.
The easiest way to install for Linux or Windows is to download a binary from the releases page.
If your platform doesn't have binaries, get cargo. Then:
$ cargo install file-sniffer
If you want the absolute latest version:
$ cargo install --git https://github.com/vmchale/file-sniffer
Make sure you are on nightly; if in doubt run
rustup run nightly cargo install file-sniffer
After setting BASH_COMPLETIONS_DIR
or FISH_COMPLETIONS_DIR
, you can use the
bash
or fish
features like so:
$ cargo install --features fish file-sniffer
Currently, sniff
looks for files that either have an extension associated with artifacts
or executable files listed in the relevant .gitignore
.
Search current directory for directories with build artifacts:
$ sniff ar
Look in $DIR
for build artifacts and sort by size:
$ sniff ar $DIR --sort
Look for artifacts or directories containing artifacts that occupy more than 1GB of disk space:
$ sniff ar -t1G
To turn off colorized output:
export CLICOLOR=0
The intent is to support basically anything, so if your DOC is not on the list, feel free to open a PR or start an issue.
These are still very much works in progress; as of now errors and warnings are still in English. Binaries will be available once things stabilize.
Français:
cargo install file-sniffer --no-default-features --feature francais # crates.io doesn't permit unicode in feature names
Deutsch:
cargo install file-sniffer --no-default-features --feature deutsch