bash
untilfail script
Repeatedly run a command until failure (
source
)
#!/bin/bash while "$@"; do :; done