This file is indexed.

/usr/share/doc/basic256/examples/stamp_flower.kbs is in basic256 0.9.6.69a-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
clg
dim a(6)
a[0] = 0
a[1] = 0
a[2] = 20
a[3] = 20
a[4] = 15
a[5] = 10
color yellow
for r = 0 to (2 * pi) step (pi/32)
        stamp graphwidth/2, graphheight/2, 5, r, a
next r
color blue
for r = 0 to (2 * pi) step (pi/16)
        stamp graphwidth/2, graphheight/2, 3, r, a
next r
color red
for r = 0 to (2 * pi) step (pi/8)
        stamp graphwidth/2, graphheight/2, 1, r, a
next r