forked from AuroraMiddleware/gtk
7 lines
136 B
Bash
7 lines
136 B
Bash
#! /bin/sh
|
|
if test $# -lt 1; then
|
|
echo >&2 "usage: $0 file.el"
|
|
exit 1
|
|
fi
|
|
exec emacs --no-init-file --no-site-file --batch --load $*
|