#!/usr/bin/env sh set -eo pipefail URL=http://localhost:80 wget --quiet --tries=1 --spider ${URL} [ $? -ne 0 ] && exit 1 exit 0