Differences between revisions 1 and 13 (spanning 12 versions)
Revision 1 as of 2006-07-24 20:44:46
Size: 509
Editor: mpm
Comment:
Revision 13 as of 2010-01-11 13:54:26
Size: 1477
Editor: tonfa
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
PySh is a planned roughly POSIX-compliant shell with various built-ins to allow portability of the test suite. PySh is a planned roughly POSIX-compliant shell with various built-ins to allow portability of the test suite. It is important that this tool be both simple and relatively self-contained.
Line 3: Line 3:
Some useful links: The current implementation resides in http://hg.intevation.org/mercurial/pmezard/pysh/
Line 5: Line 5:
[http://pyparsing.wikispaces.com/ Pyparsing]: an easy-to-use recursive descent parser as a singly Python module. Some useful links for getting started:
Line 7: Line 7:
[http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_10 POSIX shell BNF]: a good starting point for building our shell grammar  * [[http://pyparsing.wikispaces.com/|Pyparsing]]: an easy-to-use recursive descent parser as a single Python module.
 * [
[http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_10|POSIX shell BNF]]: a good starting point for building our shell grammar
 * [[http://pyparsing.wikispaces.com/space/showimage/ebnf.py|ebnf.py]]: An EBNF->pyparsing converter
Line 9: Line 11:
[http://pyparsing.wikispaces.com/space/showimage/ebnf.py ebnf.py]: An EBNF->pyparsing converter Other links:
Line 11: Line 13:
 * [[http://www.antlr.org|Antlr]]: An LL(k) recursive descent parser generator which can generate Python.
 * [[http://www.dabeaz.com/ply|PLY]] - lex/yacc alike framework for Python
 * [[http://dev.modelnine.org/hg/pyrr/|PyRR]]: a lexing and parsing toolkit for Python.
 * [[http://ipython.scipy.org/doc/manual/node12.html|PySh]]: the other Python shell
 * [[http://www.busybox.net/cgi-bin/viewcvs.cgi/trunk/busybox/shell/ash.c|Ash]]: A maintained slim shell
 * [[http://lists.samba.org/archive/linux/2004-February/009990.html|Martin Pool presumes that it is not possible to use BNF to describe the sh grammar]]
    - which is ok, because we only want to make a shell usable for the test suite, not a complete sh replacement
----
CategoryTesting

PySh is a planned roughly POSIX-compliant shell with various built-ins to allow portability of the test suite. It is important that this tool be both simple and relatively self-contained.

The current implementation resides in http://hg.intevation.org/mercurial/pmezard/pysh/

Some useful links for getting started:

  • Pyparsing: an easy-to-use recursive descent parser as a single Python module.

  • POSIX shell BNF: a good starting point for building our shell grammar

  • ebnf.py: An EBNF->pyparsing converter

Other links:


CategoryTesting

PySh (last edited 2010-01-11 13:54:26 by tonfa)