This file is indexed.

/usr/bin/rasterizer is in libbatik-java 1.7.ubuntu-8ubuntu2.

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

# Include the wrappers utility script
. /usr/lib/java-wrappers/java-wrappers.sh

# We need sun runtime.
find_java_runtime openjdk sun 

find_jars xercesImpl batik-all 
find_jars xml-apis-ext batik-transcoder
# fop-transcoder.jar 

# We need FOP for PDF output
if locate_jar fop; then
    find_jars fop xmlgraphics-commons
fi

find_jars avalon-framework commons-logging commons-io

# We see if there is a -scriptSecurityOn in the commandline
if [ "$1" != -scriptSecurityOn ]; then
    extra_args="-scriptSecurityOff"
else
    shift
    extra_args=""
fi

run_java org.apache.batik.apps.rasterizer.Main $extra_args "$@"