Skip to content

Instantly share code, notes, and snippets.

@asus4
Created February 16, 2017 04:30
Show Gist options
  • Save asus4/5cfff1a16b344750d89c1d253a956da7 to your computer and use it in GitHub Desktop.
Save asus4/5cfff1a16b344750d89c1d253a956da7 to your computer and use it in GitHub Desktop.
名前占いの画像をダウンロードする!
#!/bin/bash
if [ $# -ne 2 ]; then
echo "option is ./namae.sh 性 名" 1>&2
exit 1
fi
echo "downloading $1 $2"
curl "https://enamae.net/download.php?sei=$1&mei=$2" > "$1$2.jpg"
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment