Last active
November 14, 2021 00:45
-
-
Save BomberFish/ddf66a98570aaebfb03bc83fc0632f8e to your computer and use it in GitHub Desktop.
Really simple skin downloader that uses minecraftskinstealer.com
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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