This repository has been archived on 2024-01-15. You can view files and clone it, but cannot push or open issues or pull requests.
2015-10-01 09:27:02 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
I=0
|
|
|
|
NATTEMPS=$1
|
|
|
|
|
2015-10-14 11:03:33 +00:00
|
|
|
while [ $I -lt $NATTEMPS ]
|
2015-10-01 09:27:02 +00:00
|
|
|
do
|
|
|
|
I=$((I+1))
|
|
|
|
./command.sh
|
|
|
|
done
|