mkxp/extra/dump.sh

85 lines
1.6 KiB
Bash
Raw Normal View History

2020-05-06 07:33:51 +00:00
#!/bin/bash
ARRAY=()
ARRAYFILES=()
FILE=$1
mkdir -p preload/Data
rm -f preload/$FILE.json
touch preload/$FILE.json
ruby dump.rb $FILE
while IFS= read -r line; do
if [[ $line == *"::"* ]]; then
continue
fi
if [[ $line == *"!"* ]]; then
continue
fi
if [[ $line == *"true" ]]; then
continue
fi
if [[ $line == *"false" ]]; then
continue
fi
if [[ $line == *"[]" ]]; then
continue
fi
if [[ $line == *":"* ]]; then
value=${line#*:}
value=${value//[[:blank:]]/}
value=${value//\'}
re="^[0-9.-]+$"
if [[ $value =~ $re ]] ; then
continue
fi
re='^EV[0-9]+$'
if [[ $value =~ $re ]] ; then
continue
fi
if [[ $value == 'A' ]] ; then
continue
fi
if [[ $value == "''" ]] ; then
continue
fi
if [ -z "$value" ] ; then
continue
fi
if [[ " ${ARRAY[@]} " =~ " ${value} " ]]; then
continue
fi
echo $value
ARRAY+=($value)
files="$(find -name "$value.*")"
files="${files//\.\/}"
if [ -z "$files" ] ; then
continue
fi
echo "$files"
ARRAYFILES+=($files)
fi
done < dump.yml
rm dump.yml
echo '[' >> preload/$FILE.json
printf '"%s",\n' "${ARRAYFILES[@]}" | sed '$s/,$//' >> preload/$FILE.json
echo ']' >> preload/$FILE.json
echo "============================================================"
cat preload/$FILE.json
echo "============================================================"