sizeof/sizeof.sh
2022-05-04 14:16:16 +05:30

8 lines
143 B
Bash

#!/bin/sh
sizeof() {
curl -s https://api.github.com/repos/$1 | jq '.size' | numfmt --to-iec --from-unit=1024
}
size=$(sizeof $1)
echo $size