You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
469 B
24 lines
469 B
#! /bin/bash
|
|
|
|
#
|
|
# Run the given command for 500 times. Stops if the command fails.
|
|
# Usage example: run_many "make inscount1.test"
|
|
#
|
|
|
|
echo ""
|
|
echo "****************************************************"
|
|
echo "*** Going to run the above command for 500 times ***"
|
|
echo "****************************************************"
|
|
|
|
for (( i = 0 ; i <= 500; i++ ))
|
|
do
|
|
echo ""
|
|
echo "Run number $i:"
|
|
echo "Line to run $1"
|
|
$1
|
|
if [ $? -ne 0 ]
|
|
then
|
|
exit 1
|
|
fi
|
|
done
|