#!/bin/sh
if [ -z "$@" ]; then
    echo "Usage: thedorkbox [PORT]"
    exit 1
fi

cd /usr/share/thedorkbox
exec php -S 127.0.0.1:$@
