This file is indexed.

/usr/share/doc/graphviz/examples/graphs/directed/records.gv is in graphviz-doc 2.38.0-7.

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
digraph G {
	rankdir=LR;
	node [shape=record];
	a [ label ="<bala> Graphs can\lbe fun\l|<f1> mid|<f2> right\r"];
	b [ label ="<left>   |<mid> b |   " ];
	c [ label ="<p1>   | c |<p2>   " ];
	x [ label ="<p1>   | x |<p2>   " ];
	y [ label ="<p1>   | y |<p2>   " ];
	z [ label ="   | z |<p2>   " ];
	a:bala -> b:left;
	a:f1 -> d;
	a:f2 -> y:"p1";
	c:"p1" -> d;
	b:mid -> x:"p1";
	c:"p2" -> y:"p2";
	b:left -> z:"p2";
}