Created
March 10, 2020 09:12
-
-
Save yakkun/d165b593fdd44e3cc2c6b01a552f5590 to your computer and use it in GitHub Desktop.
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
#!/usr/local/bin bash | |
set -eu | |
base_url='https://www.chatwork.com/image/emoticon/' | |
icons=( | |
emo_beer.gif | |
emo_blush.gif | |
emo_bow.gif | |
emo_cake.gif | |
emo_clap.gif | |
emo_coffee.gif | |
emo_cracker.gif | |
emo_dance.gif | |
emo_devil.gif | |
# emo_ec14.gif | |
emo_flower.gif | |
emo_gogo.gif | |
emo_grin.gif | |
emo_handshake.gif | |
emo_heart.gif | |
emo_ikemen.gif | |
emo_kiss.gif | |
emo_komanechi.gif | |
emo_love.gif | |
emo_lucky.gif | |
emo_more_smile.gif | |
emo_mumu.gif | |
emo_muscle.gif | |
emo_ninmari.gif | |
emo_nod.gif | |
emo_otaku.gif | |
emo_puke.gif | |
emo_roger.gif | |
emo_sad.gif | |
emo_shake.gif | |
emo_smile.gif | |
emo_snooze.gif | |
emo_star.gif | |
emo_surprise.gif | |
emo_sweat.gif | |
emo_talk.gif | |
emo_tears.gif | |
emo_tongueout.gif | |
emo_whew.gif | |
emo_wink.gif | |
emo_wonder.gif | |
emo_wry_smile.gif | |
emo_yawn.gif | |
emo_yes.gif | |
) | |
for i in ${icons[@]} | |
do | |
curl -sS -O ${base_url}${i} | |
echo 'Downloaded: '${i} | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment