dotfiles

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

commit ae7915bb857aa53dadbd66290cdf3c709d0fc036
parent 6be98b3bc35ac2f2a7e4767f1635d47c05b31313
Author: Alex Balgavy <a.balgavy@gmail.com>
Date:   Tue, 27 Feb 2018 17:44:07 +0100

Added xld CL interface

Diffstat:
Axld | 11+++++++++++
1 file changed, 11 insertions(+), 0 deletions(-)

diff --git a/xld b/xld @@ -0,0 +1,11 @@ +#!/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 "$@"