/usr/lib/auto-07p/cmds/@R 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 12 13 14 15 16 17 18 19 20 21 22 23 | #!/bin/sh
rm -f fort.2
CFILE=
SFILE=
if ( test $# -eq 1 ) then
CFILE="$1"
if (test -r s.$1) then
SFILE="$1"
fi
elif ( test $# -eq 2 ) then
CFILE="$1.$2"
if (test -r s.$1) then
SFILE="$1"
fi
else
CFILE="$1.$2"
SFILE="$3"
fi
if ( test -n "$SFILE" -a -r c.$CFILE ) then
echo s=\'$SFILE\' | cat - c.$CFILE | make -f $AUTO_DIR/cmds/cmds.make EQUATION_NAME=$1
else
make -f $AUTO_DIR/cmds/cmds.make EQUATION_NAME=$1 < c.$CFILE
fi
|