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

9 lines
118 B
Bash
Executable File

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