Previous: In Case of Trouble Up: Basic Information on Running Maxima Next: Saving Computational Results for Later

Hardcopy

Using the UNIX script facility is one way for hardcopy output. Another way to obtain a hard copy for your doings in Maxima is to use the writefile and closefile commands in Maxima . Thus


writefile("myoutput");
   .
   .
   .
   .
closefile();
will write all input you type and all output you see on your terminal, between these two commands, on disk under the file name myoutput. Of course the complete pathname of a file can be used here. For example,

writefile ("/user/paulw/keep").

farrell@mcs.kent.edu