Skip to content

Instantly share code, notes, and snippets.

@BomberFish
Last active November 14, 2021 00:45
Show Gist options
  • Save BomberFish/ddf66a98570aaebfb03bc83fc0632f8e to your computer and use it in GitHub Desktop.
Save BomberFish/ddf66a98570aaebfb03bc83fc0632f8e to your computer and use it in GitHub Desktop.
Really simple skin downloader that uses minecraftskinstealer.com
#!/bin/bash
name=$0
if [ -z "$1" ]
then
echo "Usage:"
echo $name "[username]"
else
wget https://minecraftskinstealer.com/api/v1/skin/download/skin/$1 -O $1.png
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment