This file is indexed.

/usr/share/doc/graphviz/examples/graphs/directed/ctext.gv is in graphviz-doc 2.36.0-0ubuntu3.

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 {
	xyz [label = "hello\nworld",color="slateblue",fontsize=24,fontname="Palatino-Italic",style=filled,fontcolor="hotpink"];
	node [style=filled];
	red [color=red];
	green [color=green];
	blue [color=blue,fontcolor=black];
	cyan [color=cyan];
	magenta [color=magenta];
	yellow [color=yellow];
	orange [color=orange];
	red -> green;
	red -> blue;
	blue -> cyan;
	blue -> magenta;
	green -> yellow;
	green -> orange;
}