diff options
author | Nils Dagsson Moskopp <nils@dieweltistgarnichtso.net> | 2014-09-25 14:31:35 +0200 |
---|---|---|
committer | Nils Dagsson Moskopp <nils@dieweltistgarnichtso.net> | 2014-09-25 14:31:35 +0200 |
commit | fcf34f61061f5e53709d25c4a70e63eff2d7ebd2 (patch) | |
tree | 3ce0ecc5691a4ec562d726cfb33be7094564746a | |
parent | a61d603425c05271b2cce93a3a99c4fda92061ad (diff) |
+ top-level dofile to run all tests
-rw-r--r-- | all.do | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -0,0 +1,6 @@ +#!/bin/sh +for dir in *; do + if test -d $dir; then + (cd $dir && redo) + fi +done |