This file is indexed.

/usr/bin/psize is in pdb2pqr 2.1.0+dfsg-1.

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
#!/bin/sh
app=/usr/share/pdb2pqr/src/psize.py
if [ -x $app ]; then
	$app $*
else
	echo "No executable at '$app'."
	exit 64
fi