This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| typeset -i i=1 START=$(date +%s); until echo Try Number $i... $(( $(date +%s) - $START ))s elapsed so far; git push 2> /dev/null ; do let i++; sleep 1; done; date; echo Done with $i trials - Took $(( $(date +%s) - $START )) seconds |