title |
date |
lastmod |
draft |
keywords |
description |
tags |
categories |
author |
comment |
toc |
autoCollapseToc |
postMetaInFooter |
hiddenFromHomePage |
contentCopyright |
reward |
mathjax |
mathjaxEnableSingleDollar |
mathjaxEnableAutoNumber |
hideHeaderAndFooter |
flowchartDiagrams |
sequenceDiagrams |
Check Size of a Github Repo |
2021-02-18T14:39:57Z |
2022-04-28T14:39:57Z |
false |
size github repo repository |
|
|
|
|
|
false |
false |
false |
true |
false |
false |
false |
false |
false |
false |
false |
|
|
Just a shell script.
Requirements: curl, jq, GNU Coreutils
#!/bin/sh
sizeof()
{
curl -s https://api.github.com/repos/$1 | jq '.size' | numfmt --to=iec --from-unit=1024
}
size=$(sizeof $1)
echo $size
Usage
Pass username/repo as argument to the script.