Created
January 25, 2021 19:29
-
-
Save fredldotme/45513133cac3cc83593ef34114d90d49 to your computer and use it in GitHub Desktop.
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 | |
echo "Starting loop" | |
ubuntu-app-launch morph-browser | |
sleep 15 | |
echo "Killing morph" | |
kill -9 `pidof morph-browser` | |
echo "Killed morph" | |
sleep 2 | |
echo "Loop done" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment