最後活躍 1723864300

Get repo size from GitHub API

Vinfall 已修改 1723864300. 還原成這個修訂版本

1 file changed, 0 insertions, 0 deletions

github-repo-size 重命名為 github-repo-size.sh

檔案名稱與重新命名前相同

Vinfall 已修改 1723864287. 還原成這個修訂版本

1 file changed, 12 insertions

github-repo-size(檔案已創建)

@@ -0,0 +1,12 @@
1 + #!/bin/bash
2 +
3 + if [ $# -ne 1 ]; then
4 + echo "Usage: $0 owner/repo"
5 + exit 1
6 + fi
7 +
8 + repo_info=$1
9 +
10 + repo_size=$(curl -s "https://api.github.com/repos/${repo_info}" | jq '.size' | numfmt --to=iec --from-unit=1024 | tr -d '\n')
11 +
12 + echo "${repo_size}"
上一頁 下一頁