Skip to content

Instantly share code, notes, and snippets.

View spladug's full-sized avatar
🐕
eating a tortilla

Neil Williams spladug

🐕
eating a tortilla
View GitHub Profile
function retry {
local retry_max=$1
shift
local count=$retry_max
while [ $count -gt 0 ]; do
"$@" && break
count=$(($count - 1))
sleep 1
done
The install script has moved to the main reddit repository:
https://github.com/reddit/reddit/blob/master/install-reddit.sh