This file is indexed.

/usr/share/polygen/eng/debian/test.grm is in polygen-data 1.0.6.ds2-14build1.

This file is owned by root:root, with mode 0o644.

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
I ::=   "title:    Test\n"
      ^ "author:   Enrico Zini <enrico@debian.org>\n"
      ^ "language: english\n"
      ^ "status:   Basic\n"
      ^ "topic:    General\n"
      ^ "created:  05/08/2006"
;

S ::= Phrase | GarbagePhrase ;


Phrase ::= "this is a test"
	 | "this is another test"
	 | "this is yet another test"
	 | "this is still yet another test"
	 | the quick brown {fox} jumped over the lazy {dog}
	 | "it works!"
	 | "if you see this, then it works"
	 | "look mum, it works!"
	 | "if this doesn't work, I'm going to cry"
	 ;

FooWord ::= foo | bar | baz ;
FooPhrase ::= foo [ bar [ baz ]] ;
GnuWord ::= gnu | gnat ;
GnuPhrase ::= gnu [ gnat ] ;
WibbleWord ::= wabble | wobble | wibble | wubble ;
WibblePhrase ::= - WibbleWord | - WibbleWord WibbleWord | WibbleWord WibbleWord WibbleWord ;
AntaniWord ::= antani | blinda | supercazzola ;
AntaniPhrase ::= antani [ blinda [ la supercazzola [ prematurata ]]] ;
PippoWord ::= pippo | pluto | paperino ;
PippoPhrase ::= pippo [ pluto [ paperino ]] ;
CippoWord ::= cippo | lippo | cippolippo | lippocippo | cippalippa ;
KeyboardWord ::= qwer [^t[^y[^u[^i[^o[^p]]]]]] |
                 asd [^f[^g[^h[^j[^k[^l]]]]]] |
		 zxc [^v[^b[^n[^m]]]] ;
KeyboardPhrase ::= KeyboardWord (_ | KeyboardPhrase) ;
TestWord ::= test ;
TestPhrase ::= test [ test [ test ]] ;

GarbagePhrase ::= FooPhrase | GnuPhrase | WibblePhrase | AntaniPhrase | PippoPhrase | KeyboardPhrase | CippoWord | TestPhrase;