This file is indexed.

/usr/lib/games/slashem/recover-helper is in slashem-common 0.0.7E7F3-7.

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

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
#!/bin/sh

set -e

# Note: must be done in the /var/games/slashem/save directory, 
# or it doesn't work!  That's the _other_ bug...
cd /var/games/slashem/save || exit 1

for file in ../*.0; do
  # We only try to recover our own files, and ignore the others.
  if [ -f "$file" ] && [ ! -L "$file" ] && [ -O "$file" ]; then
    /usr/lib/games/slashem/recover "$file"
  fi
done

exit 0