This file is indexed.

/usr/share/doc/librdf-query-perl/examples/bin/passing_earl_tests.sh is in librdf-query-perl 2.918-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
#!/usr/bin/tcsh

foreach i (earl*.ttl)
if (-e $i) then
roqet -q -e "PREFIX earl: <http://www.w3.org/ns/earl#> SELECT ?test FROM <${i}> WHERE { [ earl:test ?test ; earl:result [ earl:outcome earl:passed ] ] } ORDER BY ?test" | cut -d '<' -f 2 | cut -d '>' -f 1
endif
end