This file is indexed.

/etc/elvis/elvis.bwf is in elvis-console 2.2.0-11.1.

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
" Check for changed timestamp (unless it was never set, or forced write)
if !bang && edited && timestamp != "" && time(filename) != timestamp
then error file's timestamp has changed
" Maybe make a backup
if backup && !newfile
then {
 switch os
 case unix eval ! cp (filename) (filename).bak
 default   eval ! copy (filename) (dirname(filename) / basename(filename)).bak >NUL
}