Removed a bunch of old examples. (#502)

* Removed a bunch of old examples.

* moved grafana back.

* Bumping, circle didn't do build... ?
This commit is contained in:
Travis Reeder
2017-11-16 10:10:03 -08:00
committed by GitHub
parent 96cfc9f5c1
commit 64c6118313
109 changed files with 1 additions and 2222 deletions

11
examples/test.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
testlist=`find -L "$@" -type f -executable -name test.sh`
for test in $testlist
do
cd $(dirname $test)
echo "${test}"
./test.sh
cd ..
done