This file is indexed.

/usr/lib/auto-07p/cmds/@RD is in auto-07p 0.9.1+dfsg-4.

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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/bin/sh
if ( test $# -eq 1 ) then
	mv b.$1 fort.27
	mv s.$1 fort.28
	$AUTO_DIR/bin/reduce
	mv fort.27 b.$1~
        mv fort.28 s.$1~
        if (test -r fort.37) then
		mv fort.37 b.$1 
        fi
        if (test -r fort.38) then
		mv fort.38 s.$1 
		echo " rl: File reduction finished."
        fi
elif( test $# -eq 2 ) then
	mv b.$1 fort.27
	mv s.$1 fort.28
	$AUTO_DIR/bin/reduce
	mv fort.27 b.$1~
        mv fort.28 s.$1~
        if (test -r fort.37) then
		mv fort.37 b.$2 
        fi
        if (test -r fort.38) then
		mv fort.38 s.$2 
		echo " rl: File reduction finished."
        fi
else
	mv fort.7 fort.27
        mv fort.8 fort.28
	$AUTO_DIR/bin/reduce
	mv fort.27 fort.7~ 
        mv fort.28 fort.8~
        if (test -r fort.37) then
		mv fort.37 fort.7
        fi
        if (test -r fort.38) then
		mv fort.38 fort.8
		echo " rl: File reduction finished."
        fi
fi