This file is indexed.

/usr/share/genius/examples/standing-waves.gel is in genius-common 1.0.21-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
21
# Category: Differential Equations
# Name: Standing waves

the_answer = AskButtons("Number of dimensions?", "2D", "3D");

PlotWindowPresent(); # Make sure the window is raised

if the_answer == 1 then (
    LinePlotDrawLegends = false;

    for t=1 to 100 by 0.1 do (
        LinePlot(`(x)=cos(t)*sin(x),[-5,5,-2,2]);
        wait (0.05)
    )
) else if the_answer == 2 then (
    SurfacePlotDrawLegends = false;

    for t=1 to 100 by 0.1 do (
        SurfacePlot(`(x,y)=cos(t)*sin(x-y),[-5,5,-2,2,-1,1])
    )
)