Difference between revisions of "Recitalcomp"

From Recital Documentation Wiki
Jump to: navigation, search
 
Line 1: Line 1:
Compiles Recital script files (.prg) and produces object files (.dbo)
+
The recitalcomp command is used to compile ''.prg'' Recital script files and produce ''.dbo'' object files.  
  
 +
The recitalcomp command takes the following arguments.
 +
==== --help  ====
 +
Using the ''--help'' or ''-h'' argument  will display a list of valid arguments.
  
recitalcomp - Recital compiler\n\
+
<pre>
usage: recitalcomp [options]\n\
+
recitalcomp --help
    Options:\n\
+
</pre>
      -f file                  file to compile\n\
+
==== -f filename ====
      -d directory             directory to compile\n\
+
This argument is used to specify the name of the file to compile.
      -r                       recursively process subdirectories\n\
+
 
      --help, -h                Display this information\n\
+
<pre>
 +
recitalcomp -f myapp.prg
 +
</pre>
 +
==== -d directory ====
 +
This argument is used to specify the name of a directory: all ''.prg'' files in the directory will be compiled.
 +
 
 +
<pre>
 +
recitalcomp -d /data/source
 +
</pre>
 +
==== -r ====
 +
This argument is used in conjunction with the -d option to recursively process subdirectories.
 +
 
 +
<pre>
 +
recitalcomp -d /data/source -r
 +
</pre>

Latest revision as of 11:44, 22 January 2010

The recitalcomp command is used to compile .prg Recital script files and produce .dbo object files.

The recitalcomp command takes the following arguments.

--help

Using the --help or -h argument will display a list of valid arguments.

 recitalcomp --help

-f filename

This argument is used to specify the name of the file to compile.

 recitalcomp -f myapp.prg

-d directory

This argument is used to specify the name of a directory: all .prg files in the directory will be compiled.

 recitalcomp -d /data/source 

-r

This argument is used in conjunction with the -d option to recursively process subdirectories.

recitalcomp -d /data/source -r