File: xshell.sh

package info (click to toggle)
vile 9.8za-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,644 kB
  • sloc: ansic: 120,894; lex: 14,981; sh: 4,478; perl: 3,511; cpp: 3,180; makefile: 1,425; awk: 271
file content (24 lines) | stat: -rwxr-xr-x 570 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh
# $Id: xshell.sh,v 1.6 2023/01/01 17:35:30 tom Exp $
#
# This script is designed to be used from xvile to support the $xshell variable.
# If you wish to have shell commands of the form
#	:!command
# run in an xterm or equivalent, then set the $xshell variable like this:
#	:setv $xshell="xterm -e xshell.sh"
#
# Xvile uses the -e option to specify to the xterm which shell command to run.
#
if [ $# != 0 ]; then
	case "$1" in #(vi
	-e)	shift
		;;
	esac
fi
if [ $# != 0 ]; then
	eval "$@"
	echo Press return to exit
	read reply
else
	eval "${SHELL-/bin/sh}"
fi