dobutterfliescry.net/host

18 lines
265 B
Bash
Executable file

#!/usr/bin/env bash
# ===== Configuration ===== #
NOCACHE=true
SRV_ARGS=""
# ========================= #
function hostwww (
local ARGS="$SRV_ARGS"
if [[ "$NOCACHE" == true ]]; then
ARGS+=" --nocache"
fi
cd www
simple-http-server "$ARGS" "$@"
)
hostwww