Examples changes (#201)

This commit is contained in:
Pedro Nasser
2016-11-01 18:15:27 -02:00
committed by C Cirello
parent 570fdea062
commit 5d9269e186
91 changed files with 967 additions and 424 deletions

11
examples/tests.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