#!/bin/sh # Spin up a server at the passed in directory. [ -z "$2" ] && port=1102 || port="$2" python3 -m http.server "$port" -d $1