mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 12:06:41 +00:00
11 lines
144 B
Bash
Executable File
11 lines
144 B
Bash
Executable File
#!/bin/bash
|
|
count=1
|
|
echo "====> Attempt $count"
|
|
$@
|
|
(( count++ ))
|
|
while [ $? -eq 0 ]; do
|
|
echo "====> Attempt $count"
|
|
$@
|
|
(( count++ ))
|
|
done
|