#!/bin/bash
API_KEY="ВАШ АПИ"
if [ $API_KEY = "CHANGE_ME" ]
then
echo "CHANGE THE API_KEY in this file."
exit 1
fi
if ! type "jq" > /dev/null
then
echo "Please install `jq`"
exit 1
fi
find /var/www/mobil1/data/www/site.com/files/categories -type f \( -name \*.jpg -o -name \*.png -o -name \*.jpeg \) -print0 | while IFS= read -r -d '' file; do #Директория в которой искать файлы для оптимизации
json=$(curl -sS --user api:$API_KEY --data-binary @$file https://api.tinypng.com/shrink)
url=$(jq -n "$json.output.url" | sed -e 's/^"//' -e 's/"$//')
curl -sS $url > $file
done