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