This file is indexed.

/usr/share/doc/graphviz/examples/graphs/directed/try.gv is in graphviz-doc 2.40.1-2.

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
digraph G {
	subgraph cluster_small {
		a -> b;
		label=small;
	}

	subgraph cluster_big {
		p -> q -> r -> s -> t;
		label=big;
		t -> p;
	}

	t -> a;
	b -> q;
}