Case insensitive fonts find

This commit is contained in:
nobk 2024-02-05 04:15:15 +08:00
parent 86b38e473f
commit 45e1ad998a

View file

@ -23,6 +23,6 @@ done
printf "Running with options:\n%s\n" "$args" printf "Running with options:\n%s\n" "$args"
# shellcheck disable=SC2086 # shellcheck disable=SC2086
find /in -type f \( -name "*.otf" -o -name "*.ttf" -o -name "*.woff" -o -name "*.eot" -o -name "*.ttc" \) | parallel fontforge -script /nerd/font-patcher -out /out $args {} find /in -type f \( -iname "*.otf" -o -iname "*.ttf" -o -iname "*.woff" -o -iname "*.eot" -o -iname "*.ttc" \) | parallel fontforge -script /nerd/font-patcher -out /out $args {}
exit 0 exit 0