This file is indexed.

/usr/bin/cmalign is in infernal 1.1.2-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
#!/bin/sh
BINNAME=`basename $0`

if grep -q '^flags[[:space:]]*:.* sse2 ' /proc/cpuinfo ; then
    /usr/lib/infernal/$BINNAME $@
else
cat <<EOT
To run $BINNAME from infernal package your proccessor needs SSE2 which is not
available on this machine.
 ... Exiting
EOT
fi