forked from AuroraMiddleware/gtk
7 lines
136 B
Plaintext
7 lines
136 B
Plaintext
|
#! /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 $*
|