#!/bin/sh
export PATH="/friends/dlang/dub:/friends/dlang/dmd/freebsd/bin64:${PATH:-}"
export LIBRARY_PATH="/friends/dlang/dmd/freebsd/lib64:${LIBRARY_PATH:-}"
export LD_LIBRARY_PATH="/friends/dlang/dmd/freebsd/lib64:${LD_LIBRARY_PATH:-}"
script=${1+"$@"}
src=d$$.d
perl -nle 'print if 1<$. || !/^#!/' $script > /tmp/$src
cd /tmp
rdmd $src
rm $src