/usr/bin/rarian-sk-get-extended-content-list is in rarian-compat 0.8.1-6.
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 | #! /bin/sh
# Simple wrapper to make calling scrollkeeper-get-cl (extended) easier
# Copied and edited from scrollkeeper source tree
usage()
{
cat <<EOF
Usage: `basename $0` <LOCALE>
EOF
exit $1
}
if test $# -ne 1; then
usage 1
fi
# Assume we're installed in the same place as get-cl
# If it ain't in the normal path, this is needed
`dirname $0`/rarian-sk-get-cl $1 scrollkeeper_extended_cl.xml
exit $?
|