source |
all versions |
oilshell.org
Oil 0.9.6
2021-12-30
This is the home page for version 0.9.6 of Oil, a Unix shell. To use it,
- Download a source tarball.
- Build it and do a "smoke test", as described in INSTALL.
These steps take 30 to 60 seconds on most machines. After installation, see
Getting Started.
Test results, metrics, and benchmarks are shown below.
Download
|
File / SHA256 checksum |
Size |
|
|
oil-0.9.6.tar.xz |
1,274,068 |
|
e1c7d1cac276d36cb5f7de9307fee3be558ee4adaf349ef422322400d5c8a5c4 |
|
oil-0.9.6.tar.gz |
1,793,111 |
|
62601d6acfa8102496d5eccf6b15c4e478e2a00ef085c5f90b8a5e1c1b919506 |
|
oil-native-0.9.6.tar.xz |
250,712 |
|
030df4a60f6095e4ed84c29c790399d279820ba211ce75436f628c7f59119ce5 |
Note: oil-native
is a preview release, not a working shell.
What's New
Documentation
The Doc Overview links to all docs. Here is the subset of them that
are ready to read:
- Getting Started
- OSH:
- The Oil language:
- Language Design:
- Interchange Formats:
More docs:
Tests
Main Test Suites
- Spec Tests
- OSH Survey. Test OSH with existing
shells, and compare their behavior.
- OSH in C++. The progress of Oil's
C++ translation.
- Oil Language. The legacy-free
language.
- Wild Tests. Parse and translate thousands of shell scripts
with OSH.
- Unit Tests. Python unit test results.
Other Suites
Manual Tests
- [ ] Test build and install on OS X
Benchmarks
- Parser. How fast does OSH
parse compared to other shells?
- Runtime. How fast does OSH run shell
scripts?
- Compute. How fast does OSH run small programs
without I/O?
- Build. How long does it take for end users to
build Oil? How big is the resulting binary?
- Virtual Memory Baseline. How much memory do
shells use at startup?
- mycpp. Compares Python and generated C++
on small examples.
Metrics
- Lines of source, counted in different ways:
- overview. The whole Oil repo organized by
type of source file.
- for-translation.
An overview of the "compile engineer" project.
- osh-cloc. OSH and common
libraries, as measured by the cloc tool.
- oil-cpp. The C++ code in the
oil-native
tarball.
oil-native
.
Source Code
These files may help you understand how Oil is implemented, i.e. with
domain-specific languages and code generation.
- _devbuild/gen/id.h. A list of language
elements, used in the lexer and in multiple parsers and evaluators.
- The regex-based lexer uses two stages of code generation:
- frontend/syntax.asdl. The syntax tree
for OSH and Oil.
- oil_lang/grammar.pgen2. The
expression grammar for Oil. In contrast, the OSH parsers are hand-written.
Also see the oilshell/oil repository.
Old / Experimental
These links describe the CPython / "OVM" build, which should become
the "experimental" version of Oil.
OPy Tests
The OPy compiler is used to compile Oil to bytecode, but isn't itself part of
the release.
OPy / OVM Metrics
- OPy Line Counts.
- Lines of dependencies:
- pydeps. Oil code plus the Python
standard library.
- nativedeps. Oil code plus a
slice of CPython.
- Bytecode Metrics
- OVM / CPython
- overview - An analysis of GCC's
compilation of OVM (a subset of CPython). Bloaty provides the
underlying data.
- cpython-defs/overview - We try to
ship as little of CPython as possible, and this is what's left.
Generated on Wed Dec 29 23:52:09 EST 2021