gdxapp4d/gdxapp4d-chain-font-unicode4d/src/main/nodejs/conv-font.sh

10 lines
190 B
Bash
Executable file

#!/bin/bash
mkdir -p $2;
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
for FILE in `ls $1`
do
node $SCRIPT_DIR/conv-font.js $1/$FILE > $2/$FILE.xml
done