mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 13:06:41 +00:00
9 lines
121 B
Bash
Executable File
9 lines
121 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
count=1
|
|
echo "====> Attempt $count"
|
|
while "$@"; do
|
|
((count++))
|
|
echo "====> Attempt $count"
|
|
done
|