#!/bin/sh gh api gists | jq -r '.[] | select(.public == true) | .files[].raw_url' | while read -r row ; do curl -sO "$row" done