Commit bd5109dd authored by Mario Chirinos's avatar Mario Chirinos

utf8 scipt

parent 42ea4a85
#!/bin/sh #!/bin/sh
DIR=$1 DIR=$1
OUTDIR=$2
cd $DIR cd $DIR
for d in */; do for d in */; do
echo "$d" echo "$d"
cd $DIR$d cd $DIR$d
for file in *.json; do for file in *.json; do
echo $file echo $file
cat $file | jq . cat $file | jq . > $OUTDIR$filename
done done
done done
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment