/usr/bin/elvisnox is in elvis 2.2.0-11.1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #!/bin/sh
# This is a little wrapper shell script which runs elvis with
# the GUI set to "termcap" (i.e. for using in a console).
mode=""
case "$0" in
*elvisnox) ;; # start in normal mode
*x) mode="-e";; # start in ex mode
*input) mode="-i";; # start in input mode
*view) mode="-R";; # set the defaultreadonly option
esac
ELVISGUI="termcap" exec /usr/bin/elvis $mode "$@"
|