sizr

Crates.iosizr
lib.rssizr
version
sourcesrc
created_at2024-10-26 17:31:41.631352
updated_at2024-12-01 06:29:26.400213
descriptionA fast, Rust-based tool to analyze file system usage with colorful output, file aggregation, exclusions, and directory comparisons.
homepagehttps://trinhminhtriet.com
repositoryhttps://github.com/trinhminhtriet/sizr
max_upload_size
id1424009
Cargo.toml error:TOML parse error at line 19, column 1 | 19 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include`
size0
Triet Trinh (trinhminhtriet)

documentation

README

📈 Sizr

      _
 ___ (_) ____ _ __
/ __|| ||_  /| '__|
\__ \| | / / | |
|___/|_|/___||_|

📈 Sizr: A fast, Rust-based tool to analyze file system usage with colorful output, file aggregation, exclusions, and directory comparisons.

Demo

Example

✨ Features

Features

  • Colored Output: Displays results with colors based on the LS_COLORS environment variable for clear and organized visuals.
  • File System Tree View: Visualizes the file system structure, making it easy to understand folder and file hierarchy.
  • Small File Aggregation: Option to group smaller files together for a more concise view of storage usage.
  • Exclusions: Ability to exclude specific files or directories from analysis, enhancing customization.
  • Directory Comparison: Compare multiple directories to quickly identify storage differences.
  • High Performance: Built in Rust for speed and efficiency across file system operations.

🚀 Installation

To install sizr, simply clone the repository and follow the instructions below:

git clone git@github.com:trinhminhtriet/durs.git
cd sizr

cargo build --release
cp ./target/release/sizr /usr/local/bin/
sizr -d 2

Running the below command will globally install the sizr binary.

cargo install sizr

💡 Usage

 $ sizr --help
Usage: sizr [options] <path> [<path>..]

Options:
    -d, --depth [DEPTH] show directories up to depth N (def 1)
    -a, --aggr [N[KMG]] aggregate smaller than N B/KiB/MiB/GiB (def 1M)
    -s, --summary       equivalent to -da, or -d1 -a1M
    -u, --usage         report real disk usage instead of file size
    -b, --bytes         print sizes in bytes
    -f, --files-only    skip directories for a fast local overview
    -x, --exclude NAME  exclude matching files or directories
    -H, --no-hidden     exclude hidden files
    -A, --ascii         ASCII characters only, no colors
    -h, --help          show help
    -v, --version       print version number

🗑️ Uninstallation

Running the below command will globally uninstall the sizr binary.

cargo uninstall sizr

Remove the project repo

rm -rf /path/to/git/clone/sizr

🤝 How to contribute

We welcome contributions!

  • Fork this repository;
  • Create a branch with your feature: git checkout -b my-feature;
  • Commit your changes: git commit -m "feat: my new feature";
  • Push to your branch: git push origin my-feature.

Once your pull request has been merged, you can delete your branch.

📝 License

This project is licensed under the MIT License - see the LICENSE file for details.

Commit count: 14

cargo fmt