/usr/lib/auto-07p/cmds/@zr is in auto-07p 0.9.1+dfsg-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 | #!/bin/sh
echo " "
echo " Zeroing small numbers in s.$1 ... "
make -f $AUTO_DIR/util/Makefile zero
cp s.$1 fort.28
mv s.$1 s.$1~
./zero
mv fort.38 s.$1
rm fort.28
rm zero
echo " Done. "
|