Show aging of directories.
Show how much of your directories have been lying around unused:
console
$ stor-age 90 -- ~/media
/home/umcdev/media: 63.1 GiB
unaccessed for 90 days: 90% (56.6 GiB)
unmodified for 90 days: 99% (62.2 GiB)
Iterate over set of directories with find-like tools.
bash
find /data/ -mindepth 1 -maxdepth 1 -type d | stor-age 90 365
fd --max-depth 1 --type d . /data | stor-age 90 365
See --help
for more information on command-line usage.
Install the stor-age AUR package:
bash
pacaur -S stor-age
bash
cargo install stor-age
bash
git clone https://github.com/idiv-biodiversity/stor-age.git
cd stor-age
cargo build --release
install -Dm755 target/release/stor-age ~/bin/stor-age