Created
May 10, 2025 21:54
-
-
Save a904guy/13ab2908d1ad0d2a2740ff3810496dfc to your computer and use it in GitHub Desktop.
Always run command, restarts program after exit.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
while true | |
do | |
$@ | |
sleep 1 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment