This file is indexed.

/usr/share/doc/basic256/examples/testing/testimagesave.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
for t = 0 to 100
   color rand()*256, rand()* 256, rand()*256
   rect rand()*graphwidth, rand()*graphheight,rand()*graphwidth, rand()*graphheight
next t
imgsave "testimgsave1.png"
imgsave "testimgsave2.png", "png"
imgsave "testimgsave3.jpg", "jpg"
imgsave("testimgsave4.png")
imgsave("testimgsave5.png", "png")
imgsave("testimgsave6.jpg", "jpg")
imgsave("testimgsave7.gif", "gif")