Skip to content

Instantly share code, notes, and snippets.

@wopfel
Created December 21, 2013 16:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wopfel/8071781 to your computer and use it in GitHub Desktop.
Save wopfel/8071781 to your computer and use it in GitHub Desktop.
Wait until a process ends (Linux, /proc filesystem, PID subdirectory, 14989 is the process ID in this example)
while [[ -d /proc/14989/ ]] ; do sleep 1 ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment