Previous: Filenames in MAXIMA Up: Helpful Hints to MAXIMA Programmers Next: Saving Computational Results for a Later Session

Hardcopy

Using the UNIX script facility is one way for hardcopy output. Another way to obtain a hard copy for your doings in vaxima is to use the WRITEFILE and CLOSEFILE commands in MAXIMA. Thus


writefile(keep);
   .
   .
   .
   .
closefile();
will write all output you see (including all C lines, D lines etc.) in between on disk under the filename keep. Of course the complete pathname of a file can be used here. For example,

writefile("/user/pwang/keep");

farrell@mcs.kent.edu