* Organize documentation into per-manual directories (halfway point commit).
[bpt/guile.git] / doc / ref / scsh.texi
CommitLineData
a0e07ba4
NJ
1@page
2@node The Scheme shell (scsh)
3@chapter The Scheme shell (scsh)
4
5An incomplete port of the Scheme shell (scsh) 0.5.1 is available for
6Guile. The idea is to allow Scheme code using scsh interfaces to be run
7inside the Guile interpreter.
8
9For information about scsh on the Web see
10@url{http://www-swiss.ai.mit.edu/scsh/scsh.html}.
11The original scsh is available by ftp from
12@url{ftp://swiss-ftp.ai.mit.edu:/pub/su}.
13
14The scsh code is distributed as a separate module, guile-scsh,
15which must be installed somewhere in Guile's load path before
16it can be used. This is similar to the installation
17of slib (you may want to install that first, since it's needed before
18scsh can run in Guile: see @ref{SLIB} for details).
19
20This port of scsh does not currently use the Guile module system, but
21can be initialized with:
22
23@smalllisp
24(load-from-path "scsh/init")
25@end smalllisp