diff options
author | Patrick Simianer <p@simianer.de> | 2016-06-07 17:16:22 +0200 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2016-06-07 17:16:22 +0200 |
commit | 9df3b86e6a5b087d441c161c03a6fb3298943864 (patch) | |
tree | d9e1c9f8d8e6794ba6834ec5938d5c08975f48f7 /util/run_all | |
parent | 6c62dc57ae90fc6b016da507cae22d96fc128af2 (diff) | |
parent | 457ab6312a19281e1c33b54411cb13878913e774 (diff) |
Merge branch 'master' of github.com:pks/lfpe
Diffstat (limited to 'util/run_all')
-rwxr-xr-x | util/run_all | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/util/run_all b/util/run_all new file mode 100755 index 0000000..2fc511c --- /dev/null +++ b/util/run_all @@ -0,0 +1,7 @@ +#!/bin/zsh -x + +for i in `find ../sessions -maxdepth 1 | cut -d "/" -f 3 | grep -P "^session_"`; do + echo $i + ./util/run_server $i & +done + |