view unixSoft/otherbin/emacs.sh @ 146:9fdb82e108de

I really always need opendiff-w.
author Augie Fackler <durin42@gmail.com>
date Fri, 25 Sep 2009 22:46:01 -0400
parents b403402153b5
children 7983184eb8d8
line wrap: on
line source

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