2025-11-19 16:25:23 +03:00

9 lines
115 B
Bash
Executable File

#!/bin/sh
# Выполнять, пока команда падает
set -u
while ! "${@}" ; do
sleep 0.5
done