dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

xld (204B)


      1 #!/bin/sh
      2 
      3 #Edit this line to define a path to XLD.app
      4 XLD_APP="/Applications/XLD.app"
      5 
      6 if [ ! -d "${XLD_APP}" ] ; then
      7 	echo "XLD.app not found"
      8 	exit;
      9 fi
     10 
     11 "${XLD_APP}/Contents/MacOS/XLD" --cmdline "$@"