/usr/bin/pybconvert is in pybliographer 1.2.14-3.
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 | #!/bin/sh
# -*- sh -*-
prefix="/usr/share/pybliographer"
pyblio="/usr/bin/pybliographer"
invocation="$0"
script="${invocation}.py"
if test -r "${script}" ; then
exec "${pyblio}" --quiet "${script}" "$@"
echo "${progname}:error: can't execute the real script"
exit 1
fi
progname=`basename "${invocation}"`
script="${prefix}/${progname}.py"
if test -r ${script} ; then
exec "${pyblio}" --quiet "${script}" "$@"
echo "${progname}:error: can't execute the real script"
exit 1
fi
echo "${progname}:error: can't locate the real script"
exit 1
|