Go to the first, previous, next, last section, table of contents.
Sometimes it is necessary to pass some command line options to the scheme procedure. This can be done via `-g' (`--guile-command') command line option. For example:
guimb --guile-command -opt --guile-command 24 --file progfile
In this example, the scheme procedure will see the following command line:
progfile -opt 24
If there are many arguments to be passed to Scheme, it is more convenient to enclose them in `-{' and `-}' escapes:
guimb -{ -opt 24 -} --file progfile
All arguments enclosed between `-{' and `-}' are not processed by `guimb', they are instead passed to the Scheme program verbatim.
Go to the first, previous, next, last section, table of contents.