====== bash ====== ===== untilfail script ===== Repeatedly run a command until failure ([[https://stackoverflow.com/questions/12967232/repeatedly-run-a-shell-command-until-it-fails|source]]) #!/bin/bash while "$@"; do :; done