Files
schmeeve-toolz/xld
2026-05-10 12:53:30 -07:00

12 lines
204 B
Bash
Executable File

#!/bin/sh
#Edit this line to define a path to XLD.app
XLD_APP="/Applications/XLD.app"
if [ ! -d "${XLD_APP}" ] ; then
echo "XLD.app not found"
exit;
fi
"${XLD_APP}/Contents/MacOS/XLD" --cmdline "$@"