Skip to content

Instantly share code, notes, and snippets.

@dalibor-sojic
Last active November 9, 2019 13:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dalibor-sojic/9861933ae29b27e6586857abeab4f473 to your computer and use it in GitHub Desktop.
Save dalibor-sojic/9861933ae29b27e6586857abeab4f473 to your computer and use it in GitHub Desktop.
Optimize images on upload with inotify and jpgoptim
#!/usr/bin/env
MONITORDIR="/home/_______/public_html/wp-content/uploads/"
inotifywait -m -r -e create --format '%w%f' "${MONITORDIR}" | while read NEWFILE
do
jpegoptim --strip-all ${NEWFILE}
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment