Commit bd5109dd authored by Mario Chirinos's avatar Mario Chirinos

utf8 scipt

parent 42ea4a85
#!/bin/sh
DIR=$1
OUTDIR=$2
cd $DIR
for d in */; do
echo "$d"
cd $DIR$d
for file in *.json; do
echo $file
cat $file | jq .
cat $file | jq . > $OUTDIR$filename
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