Difference between revisions of "Recitalcomp"
From Recital Documentation Wiki
Yvonnemilne (Talk | contribs) |
Yvonnemilne (Talk | contribs) |
||
| Line 1: | Line 1: | ||
| − | + | 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 - | + | <pre> |
| − | + | recitalcomp --help | |
| − | + | </pre> | |
| − | + | ==== -f filename ==== | |
| − | + | This argument is used to specify the name of the file to compile. | |
| − | + | ||
| − | + | <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.
Contents
--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