home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GEMini Atari
/
GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso
/
files
/
math
/
ols
/
ols.tes
< prev
next >
Wrap
Text File
|
1993-07-28
|
450b
|
12 lines
# ols data.1k -l '_constant x1 x2 y' > r2
# ols data.1k > r1
# ols data.1k -l '_constant x1 x2 y' -m 'y = x2 _constant' > r3
# ols data.1k -l '_constant x1 x2 y' -m 'y = x2 _constant' -p > r4
# ols data.1k -l '_constant x1 x2 y' -m 'y = x2 _constant' -epp > r5
foreach i (r[1-5])
echo '------------------------------------------'
echo $i
diff $i $i.expected
end