ambevar-dotfiles/.local/bin/elisp

52 lines
729 B
Plaintext
Raw Normal View History

2014-02-24 16:09:08 +01:00
#!/bin/sh
usage () {
cat <<EOF>&2
Usage: ${0##*/} [OPTIONS] SCRIPT [ARGS...]
2014-02-24 16:09:08 +01:00
Run Emacs Lisp SCRIPT.
Options:
-b: Byte-compile before running.
-c: Remove byte code once finished.
EOF
}
OPT_BYTE=false
OPT_CLEAN=false
while getopts :bc OPT; do
case $OPT in
b)
OPT_BYTE=true ;;
c)
OPT_CLEAN=true ;;
\?)
usage
exit 1 ;;
esac
2014-02-24 16:09:08 +01:00
done
2016-06-23 23:18:36 +02:00
shift $((OPTIND - 1))
2014-02-24 16:09:08 +01:00
if [ $# -eq 0 ]; then
usage
exit 1
2014-02-24 16:09:08 +01:00
fi
2014-09-13 14:53:42 +02:00
if ! command -v emacs >/dev/null 2>&1; then
echo >&2 'emacs not found'
exit 1
2014-09-13 14:53:42 +02:00
fi
script="$1"
if $OPT_BYTE && [ "${0##*.}" = "el" ]; then
script="${1%.*}.elc"
emacs -Q --batch -f batch-byte-compile "$1" 2>/dev/null
2014-02-24 16:09:08 +01:00
fi
2014-09-13 14:53:42 +02:00
shift
2014-02-24 16:09:08 +01:00
2014-09-14 22:15:09 +02:00
emacs -Q --script "$script" "$@" 2>&1
status=$?
2014-02-24 16:09:08 +01:00
$OPT_CLEAN && rm "$script"
exit $status