This file is indexed.

/usr/bin/xbsh is in bsh 2.0b4-12+deb7u1.

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

if [ "$1" = "-classpath" ]
then
  CLASSPATH="$2"
  shift 2
fi

CLASSPATH="${CLASSPATH:-.}:/usr/share/java/bsh.jar"
export CLASSPATH

exec /usr/bin/java bsh.Console "$@"