mirror of
https://github.com/linux-msm/bootrr.git
synced 2026-02-25 13:12:03 -08:00
18 lines
194 B
Plaintext
18 lines
194 B
Plaintext
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
if [ $# -lt 2 ]; then
|
||
|
|
echo "Usage: $0 <seconds> <command> <args>...."
|
||
|
|
exit 1
|
||
|
|
fi
|
||
|
|
|
||
|
|
attempts="$1"; shift
|
||
|
|
cmd="$@"
|
||
|
|
|
||
|
|
for i in `seq ${attempts}`
|
||
|
|
do
|
||
|
|
$cmd && exit 0
|
||
|
|
sleep 1
|
||
|
|
done
|
||
|
|
|
||
|
|
exit 1
|