view unixSoft/otherbin/emacs.sh @ 128:d59b0340a85a

Man, this is what I wanted all along.
author Augie Fackler <durin42@gmail.com>
date Thu, 23 Jul 2009 10:21:50 -0500
parents b403402153b5
children 7983184eb8d8
line wrap: on
line source

#!/bin/sh
if [ "`uname`" = "Darwin" ] ; then
    open -a emacs "$@"
else
    emacs -nw "$@"
fi