blob: c634d25062c7eb7baba81953d6ca77c2705477fe [file] [log] [blame]
#!/bin/bash
if [[ $# -lt 1 ]] ; then
echo "Need an app!"
exit
fi
RET=0 ;
INC=0 ;
while [ $RET -eq 0 ]; do
echo $INC
$@
RET=$?
let INC=$INC+1
done