mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-26 11:14:08 +00:00
14 lines
178 B
Bash
Executable File
14 lines
178 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# About
|
|
# -----
|
|
# Repeat the command until it fails - always run at least once.
|
|
|
|
"$@"
|
|
|
|
# If the status code was zero then repeat.
|
|
while [ $? -eq 0 ]; do
|
|
"$@"
|
|
done
|
|
|