/usr/lib/open-axiom/input/kafile.input is in open-axiom-test 1.4.1+svn~2626-2ubuntu2.
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 22 23 24 | -- Input generated from KeyedAccessFileXmpPage
)clear all
ey: KeyedAccessFile(Integer) := open("/tmp/editor.year", "output")
ey."Char" := 1986
ey."Caviness" := 1985
ey."Fitch" := 1984
ey."Char"
ey("Char")
ey "Char"
search("Char", ey)
search("Smith", ey)
remove!("Char", ey)
keys ey
#ey
KE := Record(key: String, entry: Integer)
reopen!(ey, "output")
write!(ey, ["van Hulzen", 1983]$KE)
write!(ey, ["Calmet", 1982]$KE)
write!(ey, ["Wang", 1981]$KE)
close! ey
keys ey
members ey
)system rm -r /tmp/editor.year
|