1 2 3 4 5 6 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