view unixSoft/otherbin/emacs.sh @ 248:e703696d4df5

emacs bootstrap: moved my personal elpa archive
author Augie Fackler <durin42@gmail.com>
date Thu, 09 Jun 2011 20:19:45 -0500
parents b403402153b5
children 7983184eb8d8
line wrap: on
line source

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