Qtrain
12/1/2017 - 3:26 AM

Clone Gist

clone all of your gists

grab a php shell with php -a

$gists = json_decode(`curl -f -s https://api.github.com/users/qtrain/gists`);
foreach($gists as $gist){
    exec("git clone $gist->git_pull_url");
}
echo "done!";