Go to file
Timothy Sample eaf8b5da61 Make sure that the tarball has everything.
* Makefile.am (distcheck-hook): New target.
2019-05-22 00:44:39 -04:00
build-aux Use Automake recipes from Guile. 2019-05-22 00:44:39 -04:00
doc Setup documentation generation. 2019-05-20 18:07:47 -04:00
gash Add missing copyright headers. 2019-05-20 18:07:47 -04:00
scripts Remove (almost) all references to Geesh. 2019-05-20 01:17:40 -04:00
tests Fix building from an external directory. 2019-05-20 18:07:47 -04:00
tools Add copyright sign to headers. 2019-05-20 01:18:22 -04:00
.dir-locals.el Add support for Guile 2.0.9. 2019-05-20 18:07:47 -04:00
.gitignore Use Automake recipes from Guile. 2019-05-22 00:44:39 -04:00
AUTHORS Update AUTHORS file. 2019-05-20 01:18:54 -04:00
COPYING Initial commit 2018-01-31 14:52:05 -05:00
ChangeLog Setup ChangeLog generation. 2019-05-20 01:18:54 -04:00
INSTALL Use the standard GNU INSTALL file. 2019-05-20 01:18:54 -04:00
Makefile.am Make sure that the tarball has everything. 2019-05-22 00:44:39 -04:00
NEWS Add a NEWS file. 2019-05-20 01:18:54 -04:00
README Rewrite README. 2019-05-20 18:07:47 -04:00
bootstrap Initial commit 2018-01-31 14:52:05 -05:00
configure.ac Remove 'foreign' Automake option. 2019-05-20 01:18:54 -04:00
guix.scm Add support for Guile 2.0.9. 2019-05-20 18:07:47 -04:00
test.sh Add missing quotes in the test script. 2019-05-22 00:44:39 -04:00

README

Gash --- Guile As SHell
***********************

Gash is a POSIX-compatible shell written in Guile Scheme.  It provides
both the shell interface, as well as a Guile library for parsing shell
scripts.  Gash is designed to bootstrap Bash as part of the Guix
bootstrap process.  We are planning to develop Gash into a
general-purpose shell and tool for building interfaces between Scheme
and the shell.

It is still early days for Gash.  At the moment, Gash is extremely
limited and extremely slow, so we cannot recommend using it as your
shell.  It does its bootstrapping job, and the parser works well for
POSIX-compatible scripts, but that's about it.

Installing
==========

This package uses GNU Autotools for building and installing.  For
details on how to configure, build, and install it, see the file named
'INSTALLING'.

If you have GNU Guix, you can skip all that and install the package
by running:

     guix package -f guix.scm

Gash is designed to work with Guile versions as early as 2.0.9.

Normally, you should build Gash using 'configure' and 'make'.
However, it can be built with nothing but Guile.  There is an example
of this in the file 'tests/bootstrap/bash-without-bash.scm'.

Testing
=======

Gash includes a number of unit and integration tests that can be run
using 'make check'.  If you are using Guile 2.0.9, you will have to
make SRFI 64 available to run the unit tests.  To do this, you can
copy 'module/srfi/srfi-64.scm' and the 'module/srfi/srfi-64' directory
from a newer version of Guile into a directory named 'srfi' in the
Gash source code directory.

If you have GNU Guix, you can also run the following extra tests.

The bootstrap test can be run using 'make check-bootstrap'.  It builds
Gash using nothing but Guix's bootstrap Guile, then uses Gash to build
Bash using Guix's bootstrap toolchain.  This test is designed to make
sure that Gash is suitable for bootstrapping.

The specification tests can be run using 'make check-spec'.  These
tests get copied and adapted from Oil <https://www.oilshell.org/>, and
then run against Gash.

Copying
=======

Gash is free software released under the GNU GPLv3 (or later).  See
'COPYING' for the full license.  Enjoy!