view unixSoft/otherbin/emacs.sh @ 38:f70862dadf83

This has been set on my server for months, and remained uncommitted until now...
author Augie Fackler <durin42@gmail.com>
date Mon, 26 Jan 2009 11:11:17 -0600
parents b403402153b5
children 7983184eb8d8
line wrap: on
line source

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