This file is indexed.

/usr/share/doc/glark/README.Debian is in glark 1.8.0-1.

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
glark for Debian
----------------
 
A few Examples how to use glark:

	world:~$ glark format *.h
		- Searches for "format" in the local .h files.

	world:~$ glark -i format p*.h
		- Searches for "format", without regard to Case.

	world:~$ glark -6 format i*.h
		- Produces 6 Lines of context around any match 
		  for "format".

	world:~$ glark -o format print p*.h
		- Searches for either "printf" or "format"

	world:~$ glark -a 4 printf format *.c *.h
		- Searches for both "printf" or "format" within
		  4 lines of each other.

	world:~$ glark -3 -a 0 printf format *.c
		- Searches for both "printf" or "format" on the
		  same line (within 0 lines of each other). Three
		  Lines of context are displayed around any matches.

	world:~$ glark -a -1 '#define\s+YIELD' '#define\s+dTHR' *.h
		- Looks for "#define\s+YIELD" within the same file 
		  (-1 == "infinite distance") of "#define\s+dTHR".

	world:~$ glark --grep print *.h
		- Searches for "print", producing output in the 
		  grep format.

	world:~$ glark --count print *.h
		- Searches for "print", producing the number of 
		  matches in each file.

 -- Michael Ablassmeier <abi@grinser.de>, Sun,  2 Mar 2003 23:21:25 +0100