Skip to content

Instantly share code, notes, and snippets.

@zhangxigithub
Created November 27, 2017 08:19
Show Gist options
  • Save zhangxigithub/bf93ececd7ff5daf3fe52130123e489d to your computer and use it in GitHub Desktop.
Save zhangxigithub/bf93ececd7ff5daf3fe52130123e489d to your computer and use it in GitHub Desktop.
TinyPNG
API_KEY=123456
for f in "$@"
do
JSON=$(curl --user api:$API_KEY --data-binary "@$f" -i https://api.tinify.com/shrink)
RESULT=${JSON##*url\":\"}
RESULT=${RESULT%%\"\}\}}
IMAGE=${f%.*}_tinypng.${f##*.}
curl "$RESULT" -o "$IMAGE"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment