This file is indexed.

/usr/share/doc/lisaac-doc/examples/compile.sh is in lisaac-doc 1:0.39~rc1-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
#!/bin/bash

for i in `find -name "*.li"` ; do 
  cat $i | grep -q "\- main <" && echo Compile $i && lisaac $i -q -boost
done