1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
.TH CLOJURE-REPL 1 "January 2, 2009"
.SH NAME
clojure-repl \- Clojure read-eval-print loop
.SH SYNOPSIS
.B clojure-repl
[\fI\-cp/\-classpath classpath\fP]
[script.clj \fI...\fP] [\-\- \fIargs ...\fP]
.SH DESCRIPTION
This manual page documents briefly the
.B clojure-repl
command.
.PP
.B clojure-repl
provides a read-eval-print loop (REPL) for the Clojure language.
Any number of Clojure files can be provided as path arguments; these
files are loaded in order, as if via \fIload-file\fP, before control
is passed to the REPL. Script files are loaded into the same namespace
in which the REPL runs.
.PP
\fBclojure-repl\fP binds \fI*command\-line\-args*\fP to a seq
containing the (optional) arguments provided after the two dashes
(\-\-).
.PP
\fBclojure-repl\fP is \fBdeprecated\fP; please instead use
.BR clojure (1)
which includes a REPL mode.
.SH OPTIONS
A summary of options is included below.
.TP
.B \-cp \fIclasspath\fP, \-classpath \fIclasspath\fP
Specifies additional classpath elements. This option overrides the $CLASSPATH environment variable.
.SH ENVIRONMENT
A listing of recognised environment variables is included below.
.TP
.B CLASSPATH
Specifies additional classpath elements.
.SH SEE ALSO
.BR clojure (1),
.BR clojurec (1).
.SH AUTHOR
\fBclojure-repl\fP is a wrapper script around a Java implementation by Rich Hickey <richhickey@gmail.com>.
The wrapper script was written by Peter Collingbourne <peter@pcc.me.uk>.
.PP
This manual page was written by Peter Collingbourne <peter@pcc.me.uk>,
for the Debian project (but may be used by others).
|