Clone all repos in a GitHub organisation

#!/usr/bin/env bash

org="libre-devops"

gh repo list ${org} --limit 1000 | while read -r repo _; do
  gh repo clone "$repo" "$repo"
done

Source: quickstart/utils/scripts/linux/clone-gh-org-repos.md