Skip to content

Commit e77c212

Browse files
committed
Adding another script.
1 parent 2afff77 commit e77c212

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

scripts/dumpsimplestats.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/bash
2+
SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )"
3+
cd $SCRIPTPATH/..
4+
make jsonstats
5+
echo
6+
for i in $SCRIPTPATH/../jsonexamples/*.json; do
7+
[ -f "$i" ] || break
8+
echo $i
9+
$SCRIPTPATH/../jsonstats $i
10+
echo
11+
done

0 commit comments

Comments
 (0)