#!/bin/bash python3 sitegen.py --with-index --watch & gen=$! python3 -m http.server -d build 8001 & srv=$! trap "kill $gen; kill $srv" EXIT wait