#!/bin/bash shopt -s extglob; for f in *.otf *.ttf; do out=${f%.*}.font.js out=${out,,} out=${out//+([[:blank:]-])/_}; php convert.php "$f" -u 'U+??' > "$out"; done