5 lines
134 B
Bash
5 lines
134 B
Bash
|
#!/usr/bin/env bash
|
||
|
nix-store -q --size $(nix-store -qR $(readlink -e $1) ) | \
|
||
|
awk '{ a+=$1 } END { print a }' | \
|
||
|
numfmt --to=iec-i
|