/usr/bin/pdb2pqr is in pdb2pqr 1.9.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/pdb2pqr.py
if [ -x $app ]; then
$app $*
else
echo "No executable at '$app'."
exit -1
fi
|