/usr/share/doc/icmake-doc/examples/backup is in icmake-doc 7.16.01-1ubuntu1.
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 | #!/bin/sh
ORGPROG=/usr/local/etc/backup/backup
if [ "$1" = "" ]
then
$ORGPROG
else
insmod /sbin/ftape.o
$ORGPROG $*
mt -f /dev/ftape rewind
sleep 20
rmmod ftape
fi
exit 0
|