123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html401/loose.dtd">
- <html>
- <!-- Created on December 10, 2012 by texi2html 1.82
- texi2html was written by:
- Lionel Cons <[email protected]> (original author)
- Karl Berry <[email protected]>
- Olaf Bachmann <[email protected]>
- and many others.
- Maintained by: Many creative people.
- Send bugs and suggestions to <[email protected]>
- -->
- <head>
- <title>avram - a virtual machine code interpreter: 1. User Manual</title>
- <meta name="description" content="avram - a virtual machine code interpreter: 1. User Manual">
- <meta name="keywords" content="avram - a virtual machine code interpreter: 1. User Manual">
- <meta name="resource-type" content="document">
- <meta name="distribution" content="global">
- <meta name="Generator" content="texi2html 1.82">
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <style type="text/css">
- <!--
- a.summary-letter {text-decoration: none}
- blockquote.smallquotation {font-size: smaller}
- pre.display {font-family: serif}
- pre.format {font-family: serif}
- pre.menu-comment {font-family: serif}
- pre.menu-preformatted {font-family: serif}
- pre.smalldisplay {font-family: serif; font-size: smaller}
- pre.smallexample {font-size: smaller}
- pre.smallformat {font-family: serif; font-size: smaller}
- pre.smalllisp {font-size: smaller}
- span.roman {font-family:serif; font-weight:normal;}
- span.sansserif {font-family:sans-serif; font-weight:normal;}
- ul.toc {list-style: none}
- -->
- </style>
- </head>
- <body lang="en" bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
- <a name="User-Manual"></a>
- <table cellpadding="1" cellspacing="1" border="0">
- <tr><td valign="middle" align="left">[<a href="Preface.html#Preface" title="Previous section in reading order"> < </a>]</td>
- <td valign="middle" align="left">[<a href="General-Options.html#General-Options" title="Next section in reading order"> > </a>]</td>
- <td valign="middle" align="left"> </td>
- <td valign="middle" align="left">[<a href="Preface.html#Preface" title="Beginning of this chapter or previous chapter"> << </a>]</td>
- <td valign="middle" align="left">[<a href="avram.html#Top" title="Up section"> Up </a>]</td>
- <td valign="middle" align="left">[<a href="Virtual-Machine-Specification.html#Virtual-Machine-Specification" title="Next chapter"> >> </a>]</td>
- <td valign="middle" align="left"> </td>
- <td valign="middle" align="left"> </td>
- <td valign="middle" align="left"> </td>
- <td valign="middle" align="left"> </td>
- <td valign="middle" align="left">[<a href="avram.html#Top" title="Cover (top) of document">Top</a>]</td>
- <td valign="middle" align="left">[<a href="avram_toc.html#SEC_Contents" title="Table of contents">Contents</a>]</td>
- <td valign="middle" align="left">[<a href="Function-Index.html#Function-Index" title="Index">Index</a>]</td>
- <td valign="middle" align="left">[<a href="avram_abt.html#SEC_About" title="About (help)"> ? </a>]</td>
- </tr></table>
- <hr size="1">
- <a name="User-Manual-1"></a>
- <h1 class="chapter">1. User Manual</h1>
- <p>This chapter provides the basic information on how to use <code>avram</code>
- to execute virtual machine code applications.
- </p>
- <p><code>avram</code> is invoked
- by typing a command at a shell prompt in one of these three forms.
- </p>
- <table><tr><td> </td><td><pre class="display"><kbd>avram</kbd> [<em>general options</em>]
- <kbd>avram</kbd> [<em>filter mode options</em>] <var>codefile</var>[<kbd>.avm</kbd>]
- <kbd>avram</kbd> [<em>parameter mode options</em>] <var>codefile</var>[<kbd>.avm</kbd>] [<em>parameters</em>]
- </pre></td></tr></table>
- <p>In the second case, <code>avram</code> reads from standard input, and may
- of course appear as part of commands such as
- <a name="index-standard-input"></a>
- </p>
- <table><tr><td> </td><td><pre class="display"><kbd>avram</kbd> [<em>filter mode options</em>] <var>codefile</var>[<kbd>.avm</kbd>] < <var>inputfile</var>
- <var>anothercommand</var> | <kbd>avram</kbd> [<em>filter mode options</em>] <var>codefile</var>[<kbd>.avm</kbd>]
- </pre></td></tr></table>
- <p>When <code>avram</code> is invoked with the name of an input file (with a
- default extension <kbd>.avm</kbd>), it reads virtual machine code from the
- file and executes it on the host machine.
- </p>
- <a name="index-functional-programming-1"></a>
- <p>The virtual code format used by <code>avram</code> is designed
- to support the features of functional or applicative programming
- languages. Although this chapter documents only the usage of
- <code>avram</code> and not the internals, it will be helpful to keep in mind
- that the virtual machine code expresses a mathematical function rather
- than a program in the conventional sense. As such, it performs no action
- directly, but may be applied in a choice of ways by the user of
- <code>avram</code> according to the precise operation required.
- </p>
- <p>The following sections provide information in greater detail about
- usage and diagnostics.
- </p>
- <table class="menu" border="0" cellspacing="0">
- <tr><td align="left" valign="top"><a href="General-Options.html#General-Options">1.1 General Options</a></td><td> </td><td align="left" valign="top"> getting help and version information
- </td></tr>
- <tr><td align="left" valign="top"><a href="Modes-of-Operation.html#Modes-of-Operation">1.2 Modes of Operation</a></td><td> </td><td align="left" valign="top"> stream processing or file oriented
- </td></tr>
- <tr><td align="left" valign="top"><a href="Filter-Mode-Options.html#Filter-Mode-Options">1.3 Filter Mode Options</a></td><td> </td><td align="left" valign="top"> how to run a stream processor
- </td></tr>
- <tr><td align="left" valign="top"><a href="Parameter-Mode-Options.html#Parameter-Mode-Options">1.4 Parameter Mode Options</a></td><td> </td><td align="left" valign="top"> how to have an application use files
- </td></tr>
- <tr><td align="left" valign="top"><a href="Command-Line-Syntax.html#Command-Line-Syntax">1.5 Command Line Syntax</a></td><td> </td><td align="left" valign="top"> application-independent conventions
- </td></tr>
- <tr><td align="left" valign="top"><a href="Diagnostics.html#Diagnostics">1.6 Diagnostics</a></td><td> </td><td align="left" valign="top"> explanation of error messages
- </td></tr>
- <tr><td align="left" valign="top"><a href="Security.html#Security">1.7 Security</a></td><td> </td><td align="left" valign="top"> running untrusted applications
- </td></tr>
- <tr><td align="left" valign="top"><a href="Example-Script.html#Example-Script">1.8 Example Script</a></td><td> </td><td align="left" valign="top"> how to unburden the end users
- </td></tr>
- <tr><td align="left" valign="top"><a href="Files.html#Files">1.9 Files</a></td><td> </td><td align="left" valign="top"> miscellaneous files used
- </td></tr>
- <tr><td align="left" valign="top"><a href="Environment.html#Environment">1.10 Environment</a></td><td> </td><td align="left" valign="top"> environment variables
- </td></tr>
- <tr><td align="left" valign="top"><a href="Bugs.html#Bugs">1.11 Bugs</a></td><td> </td><td align="left" valign="top"> hall of shame
- </td></tr>
- </table>
- <hr size="1">
- <table cellpadding="1" cellspacing="1" border="0">
- <tr><td valign="middle" align="left">[<a href="Preface.html#Preface" title="Previous section in reading order"> < </a>]</td>
- <td valign="middle" align="left">[<a href="General-Options.html#General-Options" title="Next section in reading order"> > </a>]</td>
- <td valign="middle" align="left"> </td>
- <td valign="middle" align="left">[<a href="Preface.html#Preface" title="Beginning of this chapter or previous chapter"> << </a>]</td>
- <td valign="middle" align="left">[<a href="avram.html#Top" title="Up section"> Up </a>]</td>
- <td valign="middle" align="left">[<a href="Virtual-Machine-Specification.html#Virtual-Machine-Specification" title="Next chapter"> >> </a>]</td>
- <td valign="middle" align="left"> </td>
- <td valign="middle" align="left"> </td>
- <td valign="middle" align="left"> </td>
- <td valign="middle" align="left"> </td>
- <td valign="middle" align="left">[<a href="avram.html#Top" title="Cover (top) of document">Top</a>]</td>
- <td valign="middle" align="left">[<a href="avram_toc.html#SEC_Contents" title="Table of contents">Contents</a>]</td>
- <td valign="middle" align="left">[<a href="Function-Index.html#Function-Index" title="Index">Index</a>]</td>
- <td valign="middle" align="left">[<a href="avram_abt.html#SEC_About" title="About (help)"> ? </a>]</td>
- </tr></table>
- <p>
- <font size="-1">
- This document was generated on <i>December 10, 2012</i> using <a href="http://www.nongnu.org/texi2html/"><i>texi2html 1.82</i></a>.
- </font>
- <br>
- </p>
- </body>
- </html>
|