Skip to content

Instantly share code, notes, and snippets.

@sasasin
Created March 3, 2022 08:32
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sasasin/d8445a77fbd06982082c33842a30a6ae to your computer and use it in GitHub Desktop.
Save sasasin/d8445a77fbd06982082c33842a30a6ae to your computer and use it in GitHub Desktop.
GitHub Organization に存在する全 GitHub repo を git clone するやつ
#!/bin/bash
# GitHub Organization に存在する全 GitHub repo を git clone するやつ
# 自分が Read 以上のアクセス権を持っている GitHub repo に限られる
# 組織名を指定する
GH_ORG=$1
# ページングしてくれないので欲しいだけ全部が収まる数を指定する
GH_LIMIT=$2
# 並列数
XARGS_P=$3
gh repo list "${GH_ORG}" --no-archived --limit ${GH_LIMIT} \
| cut -f 1 \
| sort \
| xargs -L1 -P${XARGS_P} gh repo clone
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment