This file is indexed.

/usr/share/doc/ksshaskpass/README.Debian is in ksshaskpass 4:5.12.4-0ubuntu1.

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
Ksshaskpass is not meant to be executed directly, it will be called
by ssh-add it is not associated to a terminal.

To add it to the KDE autostart sequence you could for example create an
executable script with the following content in ~/.config/autostart-scripts/

/----------------
|#!/bin/sh
|# specify ksshaskpass as the ssh askpass program
|export SSH_ASKPASS=/usr/bin/ksshaskpass
|
|ssh-add
\----------------