This file is indexed.

/usr/share/axiom-20120501/input/file.input is in axiom-test 20120501-8.

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
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
)set break resume
)spool file.output
)set message test on
)set message auto off
)clear all

--S 1 of 12
ifile:File List Integer:=open("/tmp/jazz1","output")
--R 
--R
--R   (1)  "/tmp/jazz1"
--R                                                    Type: File(List(Integer))
--E 1

--S 2 of 12
write!(ifile, [-1,2,3])
--R 
--R
--R   (2)  [- 1,2,3]
--R                                                          Type: List(Integer)
--E 2

--S 3 of 12
write!(ifile, [10,-10,0,111])
--R 
--R
--R   (3)  [10,- 10,0,111]
--R                                                          Type: List(Integer)
--E 3

--S 4 of 12
write!(ifile, [7])
--R 
--R
--R   (4)  [7]
--R                                                          Type: List(Integer)
--E 4

--S 5 of 12
reopen!(ifile, "input")
--R 
--R
--R   (5)  "/tmp/jazz1"
--R                                                    Type: File(List(Integer))
--E 5

--S 6 of 12
read! ifile
--R 
--R
--R   (6)  [- 1,2,3]
--R                                                          Type: List(Integer)
--E 6

--S 7 of 12
read! ifile
--R 
--R
--R   (7)  [10,- 10,0,111]
--R                                                          Type: List(Integer)
--E 7

--S 8 of 12
readIfCan! ifile
--R 
--R
--R   (8)  [7]
--R                                               Type: Union(List(Integer),...)
--E 8

--S 9 of 12
readIfCan! ifile
--R 
--R
--R   (9)  "failed"
--R                                                    Type: Union("failed",...)
--E 9

--S 10 of 12
iomode ifile
--R 
--R
--R   (10)  "input"
--R                                                                 Type: String
--E 10

--S 11 of 12
name ifile
--R 
--R
--R   (11)  "/tmp/jazz1"
--R                                                               Type: FileName
--E 11

--S 12 of 12
close! ifile
--R 
--R
--R   (12)  "/tmp/jazz1"
--R                                                    Type: File(List(Integer))
--E 12
)spool 
)system rm /tmp/jazz1
)lisp (bye)