/usr/bin/equivs-control is in equivs 2.0.9.
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 | #!/bin/bash
if [ $# -eq 0 ]
then
echo Usage: $0 filename
echo filename is the name of the equivs control file to create
exit 1
fi
case $1 in
-*)
echo Usage: $0 filename
echo filename is the name of the equivs control file to create
exit 1
;;
esac
cp /usr/share/equivs/template.ctl $1
|