This file is indexed.

/usr/share/doc/sysprofile/examples/etc/sysprofile.d/editor.bash is in sysprofile 0.3.8.

This file is owned by root:root, with mode 0o644.

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
16
17
18
19
20
# Define here the most appropriate editor for all.
# Any complaints about the order of arguments go
# immediately to "/dev/null". If you don't like 
# the ordering then just change it.

#set -x

if [ -x /usr/bin/mcedit ]; then
    export EDITOR=mcedit
elif [ -x /usr/bin/vi ]; then
    export EDITOR=vi
elif [ -x /usr/bin/elvis-tiny ]; then
    export EDITOR=elvis-tiny
elif [ -x /usr/bin/jed ]; then
    export EDITOR=jed
elif [ -x /usr/bin/emacs ]; then
    export EDITOR=emacs
elif [ -x /usr/bin/xemacs ]; then
    export EDITOR=xemacs
fi