2020-03-05 19:40:18 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2023-07-11 22:34:10 +02:00
|
|
|
set -e
|
|
|
|
|
2020-03-05 19:40:18 +02:00
|
|
|
args=""
|
|
|
|
|
2021-05-15 18:51:59 +02:00
|
|
|
# check all args for --out or -o
|
|
|
|
while [ "$#" -gt 0 ]; do
|
|
|
|
if [ "$1" = "-out" ] || [ "$1" = "--outputdir" ];then
|
|
|
|
# move past the option
|
|
|
|
shift
|
|
|
|
# and the value if there is one
|
|
|
|
case "$1" in
|
|
|
|
-*) continue ;;
|
|
|
|
*) shift $(( $# > 0 ? 1 : 0 )) ;;
|
|
|
|
esac
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
args="$args $1"
|
|
|
|
shift
|
2020-03-05 19:40:18 +02:00
|
|
|
done
|
|
|
|
|
2021-05-15 18:51:59 +02:00
|
|
|
printf "Running with options:\n%s\n" "$args"
|
|
|
|
|
|
|
|
# shellcheck disable=SC2086
|
2024-02-04 18:54:58 +02:00
|
|
|
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 {}
|
2023-07-11 22:34:10 +02:00
|
|
|
|
|
|
|
exit 0
|