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

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