view unixSoft/otherbin/emacs.sh @ 145:a585b0d2b828

Fix this path.
author Augie Fackler <durin42@gmail.com>
date Fri, 25 Sep 2009 22:45:49 -0400
parents b403402153b5
children 7983184eb8d8
line wrap: on
line source

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