summaryrefslogtreecommitdiff
path: root/emacsterm.sh.in
blob: e850aad6a28b0e8854c73331d0062d165614a8f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#!@bash@

# Copyright (C) 2011, 2013-2014, 2016 Luke Shumaker <lukeshu@sbcglobal.net>
#
# This file is not considered part of GNU Emacs.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

m4_include(common.sh.in)

usage() {
	print "Usage: %q [OPTIONS] [--] [PROGRAM [ARGS...]]" "$0"
	print 'Use Emacs as a terminal emulator'
	echo
	print \
'If ARGS contains anything beginning with "-", then you will need to put
"--" before PROGRAM so that it does not get treated as part of OPTIONS.'
	echo
	print 'If PROGRAM is not given, the default is "${SHELL:-/bin/sh}".'
	echo
	print 'The following OPTIONS are accepted:'
	emacs_usage
	flag "-T $(_ FUNCTION)" 'Use Emacs Lisp FUNCTION instead of "term"'
}


main() {
	declare -a flags=()
	declare fn=term
	declare -a prog=("${SHELL:-/bin/sh}")
	declare mode=normal

	emacs_getopt_init
	declare args
	if ! args="$(emacs_getopt T: '' "$@")"; then
		mode=error
	else
		eval set -- "$args"
		while true; do
			case "$1" in
				-V|--version) shift; mode=version;;
				-H|--help) shift; mode=usage;;
				-T) fn="$2"; shift 2;;
				--) shift; break;;
				*)
					if [[ $1 =~ $emacs_getopt_2 ]]; then
						flags+=("$1" "$2"); shift 2
					else
						flags+=("$1"); shift 1
					fi
					;;
			esac
		done
		if [[ $# -gt 0 ]]; then
			prog=("$@")
		fi
	fi

	next "$mode" \
	     emacsclient "${flags[@]}" --eval \
	     "($fn $(emacs_quote "$(args2program "${prog[@]}")"))"
}

args2program() {
	local program
	if [ $# = 1 ]; then
		program="$1"
	else
		program="$(mktemp -t -- "${0##*/}.XXXXXXXXXX")"
		{
			echo '#!@bash@'
			echo '{'
			echo 'rm -f -- "$0"'
			printf '%q ' exec -- "$@"
			echo '}'
		} > "$program"
		chmod 755 "$program"
	fi
	printf '%s\n' "$program"
}

main "$@"