Index < Previous     Next >
WPP command line switches [ ^ ]
Usage: wpp [POSIX or GNU style options] file ...
Options:
  -c FILE, --config=FILE  Use FILE as config file (default is 'config').
  -D CONST=VAL, -D CONST  Declare a constant CONST.
  --define CONST=VAL      Declare a constant CONST.
  --define CONST          Declare a constant CONST.
  -d, --depend            Generate dependencies.
  -F FL, --pre-filter=FL  Preprocess output data through FL filters.
  -f FL, --post-filter=FL Postprocess output data through FL filters.
  -g, --debug             Enable the debugging output of the internal parser.
  -h, --help              Print this message and exit.
  -q, --quiet             Run without printing any message and warning.
  -u, --unsafe-eval       Disable Safe module for inlined "eval" code.
  -v, --version           Print the version number of wpp and exit.
  -W all,  --warn=all     Enable printing all warnings.
  -W none, --warn=none    Disable warnings.
  -W LEV,  --warn=LEV     Set warning level LEV from 0 (none) to 7 (all).
  -x, --xhtml             Enable XHTML compliant output for built-in macros.
Switch Description
-c FILE
--config=FILE
Use FILE as config file (default is 'config').
-D CONST=VAL
-D CONST
--define=CONST=VAL
--define=CONST
Declare a constant CONST with the optional associated value VAL.
-d
--depend
Generate dependencies for make (it's disabled if wpp is reading data from standard input).
-F FL
--pre-filter=FL
Preprocess input data through FL filters.
Each filter should be separated by a pipe ('|') char.

Example:
wpp -F "filter1 | filter2 -opt" in.raw
-f FL
--post-filter=FL
Postprocess output data through FL filters.
Each filter should be separated by a pipe ('|') char.

Example:
wpp -f "filter1 | filter2 -opt" in.raw
-g
--debug
Enable the debugging output of the internal parser.
-h
--help
Print the list of command line switches with a short description.
-q
--quiet
Run without printing any message and warning.
-u
--unsafe-eval
Disable Safe module for inlined "eval" code (SYSTEM, EVAL, INLINE).
-v
--version
Print the version number of wpp and exit.
-W all
--warn=all
Enable printing all warnings.
-W none
--warn=none
Disable warnings.
-W LEV
--warn=LEV
Set warning level LEV from 0 (none) to 7 (all).
-x
--xhtml
Enable XHTML compliant output for built-in macros.
- Read raw data from the standard input, the html code is written to the standard output. This is the default behaviour if no file is given and at least one switch is used (obviously not '-h' or '-v').
^ Top < Previous     Next >