/usr/share/doc/gri/html/FEM.gri is in gri-html-doc 2.12.26-1build1.
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 | set missing value -99.99
# Create data using perl-script
system perl FEM.pl model.nodes model.elements > tmp
open tmp
read columns x y
close
draw curve
# Comment-out the next line if you want to inspect
# the temporary output.
system rm tmp
|