This file is indexed.

/usr/lib/open-axiom/input/file.input is in open-axiom-test 1.5.0~svn3056+ds-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
-- Input generated from FileXmpPage
)clear all

ifile:File List Integer:=open("/tmp/jazz1","output")
write!(ifile, [-1,2,3])
write!(ifile, [10,-10,0,111])
write!(ifile, [7])
reopen!(ifile, "input")
read! ifile
read! ifile
readIfCan! ifile
readIfCan! ifile
iomode ifile
name ifile
close! ifile
)system rm /tmp/jazz1