view unixSoft/otherbin/emacs.sh @ 511:a6d9af3fdc50

emacs: rip out packages I no longer use
author Augie Fackler <raf@durin42.com>
date Thu, 18 Feb 2021 11:16:43 -0500
parents b403402153b5
children 7983184eb8d8
line wrap: on
line source

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