This file is indexed.

/usr/share/doc/java-common/examples/classpath-from-jars-1 is in java-common 0.52.

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
# No shebang here: you have to source this file or to include
# it into a shell startup file, since it changes the environment.
# Bourne shell syntax.

# From: Aaron Brashears <gila@gila.org>

for jar in /usr/share/java/*.jar ; do
 CLASSPATH=${CLASSPATH}:$jar
done