This file is indexed.

/usr/bin/rarian-sk-extract is in rarian-compat 0.8.1-6build1.

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
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/bash

# Wrapper around xsltproc to mimic scrollkeeper-extract.
#
# Note that scrollkeeper internally uses libxslt for
# this, so this method is cheaper and achieves the same result

print_usage()
{
  echo -e "Usage: "
  echo -e "`basename $0` <xml file> <stylesheet 1> <output file 1> <stylesheet 2> <output file 2> ..."
}

if [[ $# < 2 ]]
then
  print_usage
  exit 0
fi

infile=$1
shift 1

while true; do
  xsltproc --xinclude --xincludestyle $1 $infile > $2
  #echo "xml: $infile style: $1 out: $2"
  shift 2
  if [[ $# < 2 ]];
  then
    break
  fi
done