Files
Maze/server-test.sh
2025-05-01 02:36:10 +03:00

13 lines
183 B
Bash
Executable File

#!/bin/bash
if [[ $# -lt 1 ]]; then
echo "no client path!"
exit 1
fi
COUNTER=0
while [[ COUNTER -lt 500 ]]; do
./$1 < Doxyfile > /dev/null &
let COUNTER++
done
echo "finish"