mirror of
https://git.adityakumar.xyz/sizeof.git
synced 2025-03-13 23:39:21 +00:00
9 lines
143 B
Bash
9 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
|