%&latex -*- latex -*- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \chapter{Introduction} This is the reference manual for scsh, a {\Unix} shell that is embedded within {\Scheme}. Scsh is a Scheme system designed for writing useful standalone Unix programs and shell scripts---it spans a wide range of application, from ``script'' applications usually handled with perl or sh, to more standard systems applications usually written in C. Scsh comes built on top of {\scm}, and has two components: a process notation for running programs and setting up pipelines and redirections, and a complete syscall library for low-level access to the operating system. This manual gives a complete description of scsh. A general discussion of the design principles behind scsh can be found in a companion paper, ``A Scheme Shell.'' %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \section{Obtaining scsh} Scsh is distributed via net publication. We place new releases at well-known network sites, and allow them to propagate from there. We currently release scsh to the following Internet sites: \begin{inset}\begin{flushleft} \ex{ftp://ftp-swiss.ai.mit.edu/pub/su/} \\ \ex{http://www-swiss.ai.mit.edu/scsh/scsh.html} \ex{http://www.cs.indiana.edu/scheme-repository/} \\ \end{flushleft} \end{inset} These sites are the MIT Project Mac ftp server, the Scheme Shell home page, and the Indiana Scheme Repository home page, respectively. Each should have a compressed tar file of the entire scsh release, which includes all the source code and the manual, and a separate file containing just this manual in Postscript form, for those who simply wish to read about the system. However, nothing is certain for long on the Net. Probably the best way to get a copy of scsh is to use a network resource-discovery tool, such as archie, to find ftp servers storing scsh tar files. Take the set of sites storing the most recent release of scsh, choose one close to your site, and download the tar file. \section{Building scsh} Scsh currently runs on a fairly large set of Unix systems, including Linux, NetBSD, SunOS, Solaris, AIX, NeXTSTEP, Irix, and HP-UX. We use the Gnu project's autoconfig tool to generate self-configuring shell scripts that customise the scsh Makefile for different OS variants. This means that if you use one of the common Unix implementations, building scsh should require exactly the following steps: \begin{inset} \begin{tabular}{l@{\qquad}l} \ex{gunzip scsh.tar.gz} & \emph{Uncompress the release tar file.} \\ \ex{untar xfv scsh.tar} & \emph{Unpack the source code.} \\ \ex{cd scsh-0.5} & \emph{Move to the source directory.} \\ \ex{./configure} & \emph{Examine host; build Makefile.} \\ \ex{make} & \emph{Build system.} \end{tabular} \end{inset} When you are done, you should have a virtual machine compiled in file \ex{scshvm}, and a heap image in file \ex{scsh/scsh.image}. Typing \begin{code} make install \end{code} will install these programs in your installation directory (by default, \ex{/usr/local}), along with a small stub startup binary, \ex{scsh}. If you don't have the patience to do this, you can start up a Scheme shell immediately after the initial make by simply saying \codex{./scshvm -o ./scshvm -i scsh/scsh.image} See chapter~\ref{chapt:running} for full details on installation locations and startup options. It is not too difficult to port scsh to another Unix platform if your OS is not supported by the current release. See the release notes for more details on how to do this. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \section{Caveats} It is important to note what scsh is \emph{not}, as well as what it is. Scsh, in the current release, is primarily designed for the writing of shell scripts---programming. It is not a very comfortable system for interactive command use: the current release lacks job control, command-line editing, a terse, convenient command syntax, and it does not read in an initialisation file analogous to \ex{.login} or \ex{.profile}. We hope to address all of these issues in future releases; we even have designs for several of these features; but the system as-released does not currently provide these features. In the current release, the system has some rough edges. It is quite slow to start up---loading the initial image into the {\scm} virtual machine takes about a cpu second. This can be fixed with the static heap linker provided with this release. This manual is very, very rough. At some point, we hope to polish it up, finish it off, and re-typeset it using markup, so we can generate html, info nodes, and {\TeX} output from the single source without having to deal with Texinfo. But it's all there is, for now. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \section{Naming conventions} Scsh follows a general naming scheme that consistently employs a set of abbreviations. This is intended to make it easier to remember the names of things. Some of the common ones are: \begin{description} \item [\ex{fdes}] Means ``file descriptor,'' a small integer used in {\Unix} to represent I/O channels. \item [\ex{\ldots*}] A given bit of functionality sometimes comes in two related forms, the first being a \emph{special form} that contains a body of {\Scheme} code to be executed in some context, and the other being a \emph{procedure} that takes a procedural argument (a ``thunk'') to be called in the same context. The procedure variant is named by taking the name of the special form, and appending an asterisk. For example: \begin{code} ;;; Special form: (with-cwd "/etc" (for-each print-file (directory-files)) (display "All done")) ;;; Procedure: (with-cwd* "/etc" (lambda () (for-each print-file (directory-files)) (display "All done")))\end{code} \item [\ex{\var{action}/\var{modifier}}] The infix ``\ex{/}'' is pronounced ``with,'' as in \ex{exec/env}---``exec with environment.'' \item [\ex{call/\ldots}] Procedures that call their argument on some computed value are usually named ``\ex{call/\ldots},'' \eg, \ex{(call/fdes \var{port} \var{proc})}, which calls \var{proc} on \var{port}'s file descriptor, returning whatever \var{proc} returns. The abbreviated name means ``call with file descriptor.'' \item [\ex{with-\ldots}] Procedures that call their argument, and special forms that execute their bodies in some special dynamic context frequently have names of the form \ex{with-\ldots}. For example, \ex{(with-env \var{env} \vari{body}1 \ldots)} and \ex{(with-env* \var{env} \var{thunk})}. These forms set the process environment body, execute their body or thunk, and then return after resetting the environment to its original state. \item[\ex{create-}] Procedures that create objects in the file system (files, directories, temp files, fifos, \etc), begin with \ex{create-\ldots}. \item [\ex{delete-}] Procedures that delete objects from the file system (files, directories, temp files, fifos, \etc), begin with \ex{delete-\ldots}. \item[ \ex{\var{record}:\var{field}} ] Procedures that access fields of a record are usually written with a colon between the name of the record and the name of the field, as in \ex{user-info:home-dir}. \item[\ex{\%\ldots}] A percent sign is used to prefix lower-level scsh primitives that are not commonly used. \item[\ex{-info}] Data structures packaging up information about various OS entities frequently end in \ldots\ex{-info}. Examples: \ex{user-info}, \ex{file-info}, \ex{group-info}, and \ex{host-info}. \end{description} % Enumerated constants from some set \var{s} are usually named \ex{\var{s}/\vari{const}1}, \ex{\var{s}/\vari{const}2}, \ldots. For example, the various {\Unix} signal integers have the names \ex{signal/cont}, \ex{signal/kill}, \ex{signal/int}, \ex{signal/hup}, and so forth. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \section{Lexical issues} Scsh's lexical syntax is just {\R4RS} {\Scheme}, with the following exceptions. \subsection{Extended symbol syntax} Scsh's symbol syntax differs from {\R4RS} {\Scheme} in the following ways: \begin{itemize} \item In scsh, symbol case is preserved by \ex{read} and is significant on symbol comparison. This means \codex{(run (less Readme))} displays the right file. \item ``\ex{-}'' and ``\ex{+}'' are allowed to begin symbols. So the following are legitimate symbols: \codex{-O2 -geometry +Wn} \item ``\ex{|}'' and ``\ex{.}'' are symbol constituents. This allows \ex{|} for the pipe symbol, and \ex{..} for the parent-directory symbol. (Of course, ``\ex{.}'' alone is not a symbol, but a dotted-pair marker.) \item A symbol may begin with a digit. So the following are legitimate symbols: \codex{9x15 80x36-3+440} \end{itemize} \subsection{Extended string syntax} Scsh strings are allowed to contain the {\Ansi} C escape sequences such as \verb|\n| and \verb|\161|. \subsection{Block comments and executable interpreter-triggers} Scsh allows source files to begin with a header of the form \codex{\#!/usr/local/bin/scsh -s} The Unix operating system treats source files beginning with the headers of this form specially; they can be directly executed by the operating system (see chapter~\ref{chapt:running} for information on how to use this feature). The scsh interpreter ignores this special header by treating \ex{\#!} as a comment marker similar to \ex{;}. When the scsh reader encounters \ex{\#!}, it skips characters until it finds the closing sequence new\-line/{\ob}ex\-cla\-ma\-tion-{\ob}point/{\ob}sharp-{\ob}sign/{\ob}new\-line. Although the form of the \ex{\#!} read-macro was chosen to support interpreter-triggers for executable Unix scripts, it is a general block-comment sequence and can be used as such anywhere in a scsh program. \subsection{Here-strings} The read macro \ex{\#<} is used to introduce ``here-strings'' in programs, similar to the \ex{<<} ``here document'' redirections provided by sh and csh. There are two kinds of here-string, character-delimited and line-delimited; they are both introduced by the \ex{\#<} sequence. \subsubsection{Character-delimited here-strings} A \emph{character-delimited} here-string has the form \codex{\#<\emph{x}...stuff...\emph{x}} where \emph{x} is any single character (except \ex{<}, see below), which is used to delimit the string bounds. Some examples: \begin{inset} \begin{tabular}{ll} Here-string syntax & Ordinary string syntax \\ \hline \verb:#<|Hello, world.|: & \verb:"Hello, world.": \\ \verb:#