ponyapi/client/test.sh

12 lines
106 B
Bash
Executable File

#!/bin/bash
set -e
for client in *
do
if [ -d "$client" ]
then
(cd "$client" && ./test.sh)
fi
done