updated and prettified
original commit: 5467847afadc478a2ef00686101ef638d9d0ae65
This commit is contained in:
commit
d15a9318c1
|
@ -2,7 +2,7 @@
|
||||||
.TH MZSCHEME 1 "31 May 1997"
|
.TH MZSCHEME 1 "31 May 1997"
|
||||||
.UC 4
|
.UC 4
|
||||||
.SH NAME
|
.SH NAME
|
||||||
mzscheme \- The PLT Scheme implementation
|
MzScheme \- The PLT Scheme implementation
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
.B mzscheme
|
.B mzscheme
|
||||||
[
|
[
|
||||||
|
@ -16,8 +16,8 @@ is the Rice University PLT
|
||||||
Scheme implementation. It implements the language as
|
Scheme implementation. It implements the language as
|
||||||
described in the
|
described in the
|
||||||
.I Revised^4 Report on
|
.I Revised^4 Report on
|
||||||
.I the Algorithmic Language Scheme,
|
.I the Algorithmic Language Scheme\|\c
|
||||||
plus numerous extensions.
|
, plus numerous extensions.
|
||||||
.I MzScheme
|
.I MzScheme
|
||||||
is the underlying implementation for
|
is the underlying implementation for
|
||||||
.I DrScheme
|
.I DrScheme
|
||||||
|
@ -60,19 +60,32 @@ Load/cds all remaining arguments after
|
||||||
.I MzScheme
|
.I MzScheme
|
||||||
starts.
|
starts.
|
||||||
.TP
|
.TP
|
||||||
.B \-l \ file
|
.BI \-l \ file
|
||||||
Same as -e '(require-library "file")'.
|
Same as -e '(require-library "\|\c
|
||||||
|
.I file\|\c
|
||||||
|
")'.
|
||||||
|
.TP
|
||||||
|
.BI \-L \ file \ \\ coll
|
||||||
|
Same as -e '(require-library "\|\c
|
||||||
|
.I file\|\c
|
||||||
|
" "\|\c
|
||||||
|
.I coll\|\c
|
||||||
|
")'.
|
||||||
.TP
|
.TP
|
||||||
.B \-r, --script
|
.B \-r, --script
|
||||||
Script mode: use as last flag for scripts.
|
Script mode: use as last flag for scripts.
|
||||||
Same as -fmv-.
|
Same as
|
||||||
|
.BR -fmv- .
|
||||||
.TP
|
.TP
|
||||||
.B \-i, --script-cd
|
.B \-i, --script-cd
|
||||||
Like -r, but also sets the directory.
|
Like -r, but also sets the directory.
|
||||||
Same as -dmv-.
|
Same as
|
||||||
|
.BR -dmv- .
|
||||||
.TP
|
.TP
|
||||||
.B \-w, --awk
|
.B \-w, --awk
|
||||||
Same as -l awk.ss.
|
Same as
|
||||||
|
.B -l
|
||||||
|
.BR awk.ss .
|
||||||
.PP
|
.PP
|
||||||
|
|
||||||
Initialization switches:
|
Initialization switches:
|
||||||
|
@ -126,26 +139,36 @@ Suppresses the read-eval-print loop.
|
||||||
.B \-h, --help
|
.B \-h, --help
|
||||||
Shows help for command-line arguments.
|
Shows help for command-line arguments.
|
||||||
.TP
|
.TP
|
||||||
.BI \-R file, --restore \ file
|
.BI \-R file ,\ --restore \ file
|
||||||
Restores an image; must be the only switch.
|
Restores an image; must be the only switch.
|
||||||
.PP
|
.PP
|
||||||
Multiple single-letter switches can be collapsed, with arguments placed
|
Multiple single-letter switches can be collapsed, with arguments placed
|
||||||
after the collapsed switches; the first collapsed switch cannot be --.
|
after the collapsed switches; the first collapsed switch cannot be
|
||||||
E.g.: `-vfme file expr' is the same as `-v -f file -m -e expr'.
|
.BR -- .
|
||||||
|
E.g.:
|
||||||
|
.B -vfme file expr
|
||||||
|
is the same as
|
||||||
|
.B -v -f file -m -e
|
||||||
|
.BR expr .
|
||||||
.PP
|
.PP
|
||||||
Extra arguments following the last switch are put into the Scheme global
|
Extra arguments following the last switch are put into the Scheme global
|
||||||
variable `argv' as a vector of strings. The name used to start
|
variable `argv' as a vector of strings. The name used to start
|
||||||
.I MzScheme
|
.I MzScheme
|
||||||
is put into the global variable `program' as a string.
|
is put into the global variable `program' as a string.
|
||||||
.PP
|
.PP
|
||||||
Extra arguments after a `--restore' file are returned as a vector of
|
Extra arguments after a
|
||||||
|
.B --restore
|
||||||
|
file are returned as a vector of
|
||||||
strings to the continuation of the `write-image-to-file' call that created
|
strings to the continuation of the `write-image-to-file' call that created
|
||||||
the image.
|
the image.
|
||||||
.PP
|
.PP
|
||||||
Expressions/files are evaluated/loaded in order as provided.
|
Expressions/files are evaluated/loaded in order as provided.
|
||||||
.PP
|
.PP
|
||||||
The current-library-collections-path is automatically set before any
|
The current-library-collections-path is automatically set before any
|
||||||
expressions/files are evaluated/loaded, unless the -x or --no-lib-path
|
expressions/files are evaluated/loaded, unless the
|
||||||
|
.B -x
|
||||||
|
or
|
||||||
|
.B --no-lib-path
|
||||||
switch is used.
|
switch is used.
|
||||||
.PP
|
.PP
|
||||||
.PP
|
.PP
|
||||||
|
@ -158,8 +181,11 @@ documentation and other information available at
|
||||||
http://www.cs.rice.edu/CS/PLT/packages/mzscheme/
|
http://www.cs.rice.edu/CS/PLT/packages/mzscheme/
|
||||||
.SH FILES
|
.SH FILES
|
||||||
The file "~/.mzschemerc" is loaded before any provided
|
The file "~/.mzschemerc" is loaded before any provided
|
||||||
expressions/files are evaluated/loaded, unless the -q or
|
expressions/files are evaluated/loaded, unless the
|
||||||
--no-init-file switch is used. (Under Windows and MacOS, "mzscheme.rc"
|
.B -q
|
||||||
|
or
|
||||||
|
.B --no-init-file
|
||||||
|
switch is used. (Under Windows and MacOS, "mzscheme.rc"
|
||||||
is loaded from the start-up working directory.)
|
is loaded from the start-up working directory.)
|
||||||
.PP
|
.PP
|
||||||
.I MzScheme
|
.I MzScheme
|
||||||
|
|
0
tests/mred/startup/app-a/tsig.ss
Normal file
0
tests/mred/startup/app-a/tsig.ss
Normal file
Loading…
Reference in New Issue
Block a user