4371 shaares
A useful script to work offline, in the train, to run in a local git clone of the target repository :
gh issue list --limit 100 --json number --jq .[].number | while read nb; do
gh issue view $nb > $nb.md
gh issue view $nb --comments >> $nb.md
done