Skip to content

Instantly share code, notes, and snippets.

@fredldotme
Created January 25, 2021 19:29
Show Gist options
  • Save fredldotme/45513133cac3cc83593ef34114d90d49 to your computer and use it in GitHub Desktop.
Save fredldotme/45513133cac3cc83593ef34114d90d49 to your computer and use it in GitHub Desktop.
#!/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