Skip to content

Instantly share code, notes, and snippets.

@janjiss
janjiss / convert-png-to-webp
Created November 6, 2017 08:11 — forked from jonjensen/convert-png-to-webp
Batch convert PNG files to WebP in 1 directory
#!/bin/bash
PATH=/usr/local/bin:/usr/bin:/bin
# cd to the directory of the image so we can work with just filenames
dir="$(dirname "$1")"
cd "$dir" || exit 1
base="$(basename "$1" .jpg)"
# create a WebP version of the PNG