view unixSoft/otherbin/emacs.sh @ 184:efa2bfc73d2d

update-source-trees: recurse to find all VCS working copies
author Augie Fackler <durin42@gmail.com>
date Tue, 26 Jan 2010 11:48:39 -0600
parents b403402153b5
children 7983184eb8d8
line wrap: on
line source

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