This file is indexed.

/usr/share/doc/syslogout/examples/etc/syslogout.d/rmpgppass.bash is in syslogout 0.3.9.

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
# Remove any PGPPASS entries from shell history:

# Uncomment for debugging:
#set -x

sed '/^export PGPPASS/d'\
  ~/.bash_history > ~/.bash_history.tmp &&\
  mv ~/.bash_history.tmp ~/.bash_history &&\
  chmod 640 ~/.bash_history