Skip to content

Instantly share code, notes, and snippets.

@mdrissel
mdrissel / sugh.sh
Created June 30, 2023 13:39 — forked from erdincay/sugh.sh
su GitHub (downloading all repositories from a given user)
#!/bin/bash
if [ -z "$1" ]; then
echo "waiting for the following arguments: username + max-page-number"
exit 1
else
name=$1
fi
if [ -z "$2" ]; then