diff --git a/examples/run_all.sh b/examples/run_all.sh new file mode 100755 index 0000000000000000000000000000000000000000..cc40d772656e11259e4aac32b47a2ad74bf4e634 --- /dev/null +++ b/examples/run_all.sh @@ -0,0 +1,8 @@ +#!/bin/bash +# +# small scripts that runs all examples for testing purposes + +for file in `ls *.py`; do + python $file +done +