Skip to content

Instantly share code, notes, and snippets.

@peterforgacs
Created December 30, 2016 17:22
Show Gist options
  • Save peterforgacs/3ed68543ee12860d95a4a1aaa326d8fd to your computer and use it in GitHub Desktop.
Save peterforgacs/3ed68543ee12860d95a4a1aaa326d8fd to your computer and use it in GitHub Desktop.
Wait for a process to exit to run a command
# Wait for firefox to be closed
while [ `pidof firefox` ]
do
wait `pidof firefox`
done
# do something after ff exited
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment