Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sr2ds/du-rs
Simple estimate file space usage - du command in Rust :crab:
https://github.com/sr2ds/du-rs
linux rust rust-language
Last synced: 4 days ago
JSON representation
Simple estimate file space usage - du command in Rust :crab:
- Host: GitHub
- URL: https://github.com/sr2ds/du-rs
- Owner: sr2ds
- Created: 2021-05-07T22:00:43.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-05-07T22:04:01.000Z (over 3 years ago)
- Last Synced: 2024-11-10T00:29:09.741Z (2 months ago)
- Topics: linux, rust, rust-language
- Language: Rust
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Simple estimate file space usage - RIIR
A simple tool for size analyze files in your file system like `du` command.
# Actual Status
This is a initial implementation, for now we have only a simple list with size of directories and the unique acceptabled param is directory path.
# Todo
1. Params rules; Like du https://linuxcommand.org/lc3_man_pages/du1.html
2. Is a good idea make async callers to improve perform?;
3. Exceptions tratatives;
4. Tests.# Setup
Clone this repository and enter to new folder:
```
git clone https://github.com/sr2ds/du-rs.git && cd du-rs
```Run with Cargo:
```
cargo watch -x run
```
----Writing in Rust <3