view unixSoft/otherbin/emacs.sh @ 235:678ed4e870f1

hg-email-reply-selected-flags: new script to automate patchbomb replies
author Augie Fackler <durin42@gmail.com>
date Sun, 05 Dec 2010 10:00:31 -0600
parents b403402153b5
children 7983184eb8d8
line wrap: on
line source

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