Skip to content

Instantly share code, notes, and snippets.

@ddollar
Created November 1, 2013 21:07
Show Gist options
  • Save ddollar/d5231397881ab3314cd9 to your computer and use it in GitHub Desktop.
Save ddollar/d5231397881ab3314cd9 to your computer and use it in GitHub Desktop.
#!/bin/sh
set -e
echo "running"
(
echo "subprocess FAILS"
exit 1
) &
echo "done"
sleep 2
echo "still alive"
curl --fail http://httpbin.org/status/404
echo "should not see this"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment