| Crates.io | dirio |
| lib.rs | dirio |
| version | 0.1.0 |
| created_at | 2025-04-28 23:13:04.91657+00 |
| updated_at | 2025-04-28 23:13:04.91657+00 |
| description | A simple CLI to track and report disk usage over some subcommand runtime |
| homepage | |
| repository | |
| max_upload_size | |
| id | 1652777 |
| size | 14,970 |
A simple tool for monitoring disk usage over the runtime of a command.
This expects du to be in your $PATH and evaluates it at a specified interval while a test command is running.
It tracks and reports a TSV of the following:
cargo install dirio
This monitors the bytes of a directory over the runtime of a command.
By default that directory is ./ or the current working directory.
You can specify some other directory with the -p flag.
# Monitor disk usage and output to stdout
dirio "fasterq-dump SRR000001 --split-files --include-technical"
# Monitor disk usage and output to some log file
dirio -o dirio.log.tsv "fasterq-dump SRR000001 --split-files --include-technical"