This file is indexed.

/usr/share/doc/sysprofile/examples/etc/sysprofile.d/bash_history.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
# This defines the number of remembered commands and size of the history
# file.  Lazy people like large history file contents. ;-)

#set -x

# Defines the number of commands that will be remembered.

export HISTSIZE=5000
export HISTFILESIZE=5000

# The "ignoreboth" option ignores any double entry and makes sure that a
# command with a leading blank is not inluded in the history file at all.

export HISTCONTROL=ignoreboth