Skip to content

Instantly share code, notes, and snippets.

View ryancheley's full-sized avatar
🌴
Another Day in Paradise

Ryan Cheley ryancheley

🌴
Another Day in Paradise
View GitHub Profile
@ryancheley
ryancheley / tidy.sh
Last active April 22, 2023 20:17 — forked from tonybaloney/tidy.sh
tidy script
# Delete all forks that haven't been updated since 2020
gh auth refresh -h github.com -s delete_repo
gh search repos \
--owner ryancheley \
--updated="<2020-01-01" \
--include-forks=only \
--limit 100 \
--json url \
--jq ".[] .url" \ | xargs -I {} gh repo delete {} --confirm