/usr/share/axiom-20120501/input/textfile.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 | )set break resume
)spool textfile.output
)set message test on
)set message auto off
)clear all
--S 1 of 10
f1: TextFile := open("/etc/group", "input")
--R
--R
--R (1) "/etc/group"
--R Type: TextFile
--E 1
--S 2 of 10
f2: TextFile := open("/tmp/MOTD", "output")
--R
--R
--R (2) "/tmp/MOTD"
--R Type: TextFile
--E 2
--S 3 of 10
l := readLine! f1
--R
--R
--I (3) "root:x:0:root"
--R Type: String
--E 3
--S 4 of 10
writeLine!(f2, upperCase l)
--R
--R
--I (4) "ROOT:X:0:ROOT"
--R Type: String
--E 4
--S 5 of 10
while not endOfFile? f1 repeat
s := readLine! f1
writeLine!(f2, upperCase s)
--R
--R Type: Void
--E 5
--S 6 of 10
close! f1
--R
--R
--R (6) "/etc/group"
--R Type: TextFile
--E 6
--S 7 of 10
write!(f2, "-The-")
--R
--R
--R (7) "-The-"
--R Type: String
--E 7
--S 8 of 10
write!(f2, "-End-")
--R
--R
--R (8) "-End-"
--R Type: String
--E 8
--S 9 of 10
writeLine! f2
--R
--R
--R (9) ""
--R Type: String
--E 9
--S 10 of 10
close! f2
--R
--R
--R (10) "/tmp/MOTD"
--R Type: TextFile
--E 10
)system rm /tmp/MOTD
)spool
)lisp (bye)
|