/usr/bin/ppc is in pearpc 0.5.dfsg-2.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 9 10 11 12 13 14 15 16 17 18 19 | #!/bin/sh
prefix=/usr
exec_prefix=${prefix}/bin
sysconfdir=/etc/ppc
conffile=ppc.conf
if [ $# -gt 0 ]; then
${exec_prefix}/ppc.real $@
else
if [ -f ~/.${conffile} ]; then
${exec_prefix}/ppc.real ~/.${conffile}
elif [ -f ${sysconfdir}/${conffile} ]; then
${exec_prefix}/ppc.real ${sysconfdir}/${conffile}
else
echo "ERROR: Config file not found! (/etc/${conffile} or ~/.${conffile})"
exit 1
fi
fi
|