/usr/share/doc/pbuilder/examples/B91debc is in pbuilder 0.223.
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 | #!/bin/bash
# example file to be used with --hookdir
#
# 343894: a script to run debc command, contributed from q-funk.
BUILDDIR="${BUILDDIR:-/tmp/buildd}"
apt-get install -y "${APTGETOPT[@]}" devscripts
cd "$BUILDDIR"/*/debian
cd ..
debc
#EOF
|