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

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