/usr/lib/open-axiom/input/multiple.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 | --Copyright The Numerical Algorithms Group Limited 1991.
)clear all
draw(sin(x),x=0..2*%pi)
v1 := %
draw(cos(x),x=0..2*%pi,curveColor==light red())
v2 := %
graphs v1
--g1 := elt(graphs v1,1)::GraphImage
g1 := getGraph(v1,1)
putGraph(v2,g1,2)
makeViewport2D(v2)
--title(v2,"sine and cosine")
|