Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign upExternalResources
Resources on Unix Shells, Programming Language Design, and Implementation
Related: Unifying Make and Shell
Active Alternative Shell Languages
Fish Shell -- Probably the most popular non-POSIX shell. Focused on the interactive use case, but also has a new programming language. Written in C++.
Ion Shell -- Part of Redox OS, written in Rust. So far it looks like a fairly conservative design -- a cleaned-up version of shell, similar to Oil. But it doesn't have the goal of bash compatibility.
Oh Shell -- Goal: combine good programming features and an interactive shell. Influenced by Lisp, has prototypical inheritance, CSP with channels and threads.
Oh is a new implementation of the Choc Shell in Go. This master's thesis has a great historical overview of shells and a motivation for putting programming language features in a shell.
NGS (Blog by Ilya Sher)-- Next Generation Unix Shell. Idempotent actions. Interactivity (browser UI). Written in C.
Elvish -- Goal: shell as a real programming language; structured data like lists and maps. Relies on lambdas for e.g. control structures. Extends output capture and pipelines to support structured data. Non-POSIX syntax, but generally looks familiar to POSIX shell users (barewords as strings, prefix syntax, etc.). Interactive shell enhancements. Written in Go.
Murex -- Murex is a cross-platform shell like Bash but with greater emphasis on writing safe shell scripts and powerful one-liners while maintaining readability. Written in Go. Syntax Guide.
Neugram -- there is a command language with $$, but the control flow looks like Go rather than shell. Pipes?
Mash Shell (Github) -- An object shell. Dealing with structured data. Written in Scala. See Command vs Expression Mode
Another Mash Shell -- Mash is the "Make Shell." It is a simple scripting language used to build programs (and other files) from source files. No source code?
dgsh - Directed Graph Shell -- A fork of bash which supports "multipipes" and blocks!
PowerShell -- Microsoft's shell that deals with structured data, and has "workflows". Even works on Unix. Depends on a big VM. 850K lines of C# code.
Shill -- Scripting with Least Privilege. Built on Racket, but it appears to be making its way from research into production? The language looks more like JavaScript than a shell.
execline -- execline is a — non-interactive — scripting language, like sh ; but its syntax is quite different from a traditional shell syntax. The execlineb program is meant to be used as an interpreter for a text file; the other commands are essentially useful inside an execlineb script.
Ergonomica -- A shell written in Python using some libraries like python-prompt-toolkit. I'm including it in this section rather than grouping it with xonsh below because it appears to have its own language. It has map and filter, not sure about other constructs.
Batsh -- A language that compiles to Bash and Windows Batch. Written in OCaml. Not that active. Looks a bit like JavaScript, i.e. not a shell-like syntax.
Dormant/Historical
Bish -- Bish is a lightweight language created to bring shell scripting into the 21st century. It gives programmers the comfort of modern syntax but compiles to Bash. Written in C++. Looks more like JavaScript than a shell though.
shok (Github) -- Cross-platform shell, appears to be dormant as of 2014. Hacker News Thread. Written in C++ (with Boost), and some Python.
es shell -- "A shell with higher order functions". Based on Lisp and has garbage collection. Influenced by the rc shell.
rc shell -- The Plan 9 Shell. No word splitting. Feature set is very similar to Bourne shell or bash, but the syntax is entirely different. "Nobody really knows what the Bourne shell's grammar is".
v6 shell -- Osh(1) is an enhanced, backward-compatible port of the Sixth Edition Thompson shell.
PLASH Shell -- Principle of Least Authority Shell. Very interesting! Would be nice to take some lessons from this.
Inferno mash shell -- with builtin make functionality
Distributed Shells
DSH / Dancer's Shell -- circa 2003, doesn't seem active. ''dsh is an implementation of a wrapper for executing multiple remote shell (rsh/remsh/ssh) commands. rsh/remsh/ssh are wrappers for executing shell (ksh/bash/zsh/tcsh/sh .. etc... ) on remote hosts.''
Shell parsers
ShellCheck -- Written in Haskell, using the parser combinator style. (No seperate lexer).
shfmt -- Shell auto-formatter like gofmt, written in Go.
sh-parser -- parsing POSIX shell with Lua's LPEG
morbig -- from Colis project, parsing POSIX shell, FOSDEM Talk. alias makes parsing undecidable too!
https://github.com/idank/bashlex -- bashlex is a Python port of the parser used internally by GNU bash. For the most part it's transliterated from C ... I wrote this library for another project of mine, explainshell which needed a new parsing backend to support complex constructs such as process/command substitutions.
Interesting Shell Libraries
modernish -- Looks very ambitious, still need to understand it!
Awk/Sed-Like Languages
Tab Language -- An interesting statically-typed, non Turing complete language that apparently fills the niche of Awk. Written in C++.
Miller (Language Reference) -- Miller is like awk, sed, cut, join, and sort for name-indexed data such as CSV, TSV, and tabular JSON. Written in C.
TXR -- TXR is a pragmatic, convenient tool ready to take on your daily hacking challenges with its dual personality: its whole-document pattern matching and extraction language for scraping information from arbitrary text sources, and its powerful data-processing language to slice through problems like a hot knife through butter. Many tasks can be accomplished with TXR "one liners" directly from your system prompt. There is a TXR Lisp and then it is embedded in a pattern language. Sort of like the reverse of a template language?
jq -- jq is like sed for JSON data - you can use it to slice and filter and map and transform structured data with the same ease that sed, awk, grep and friends let you play with text. Written in C.
Dormant
r17 (Github, written in C++) -- A flexible, scalable, relational data mining language. No releases since 2013.
- r17's syntax is a cross between UNIX shell and SQL.
- Built-in concurrency, including cross-machine concurrency.
- Strong type checking at stream-header-read time.
Interactive Shells
This section is for shells which are only interactive -- they do not define a new syntax for programming, i.e. they borrow the syntax from another language or combination of languages.
xonsh -- Xonsh is a Python-ish, BASHwards-looking shell language and command prompt. The language is a superset of Python 3.4+ with additional shell primitives that you are used to from Bash and IPython. This is focused on the interactive use case, and isn't its own programming language. It's written in Python and exposes Python to the user.
xiki -- xsh tries to bring the wiki structure to the command line. Type Ctrl+X in your favorite shell (bash or zsh etc), and youll expand the command in xsh (Xiki Shell). Then you can type to filter down the output. No need to pipe to grep. Xiki runs in your text editor, so everything is editable text. Type commands anywhere. Edit the output. (Vs. typing commands at the bottom, and read-only output.) Intermix menus, headings, bullet points, wherever you want. Xiki == executable wiki. - Written in ruby.
Internal Shell DSLs in Various Languages
Every language seems to have an internal DSL for shell commands. This approach is probably OK for small things, but I haven't seen it in the wild in major pieces of software.
EShell in Emacs Lisp -- A bash-like shell embedded in Emacs. Example Syntax, Mastering EShell.
plumbum in Python -- The motto of the library is "Never write shell scripts again", and thus it attempts to mimic the shell syntax ("shell combinators") where it makes sense, while keeping it all Pythonic and cross-platform.
sh in Python -- sh is a full-fledged subprocess replacement for [multiple Python versions] that allows you to call any program as if it were a function. I wouldn't call this a shell because it doesn't support pipelines and such, but it's an example of programmers preferring the syntax of their language to the syntax of Unix shell.
pysh -- Dormant project where the author encountered problems in the approach of embedding shell in another language.
Shell in Ruby -- It provides users the ability to execute commands with filters and pipes, like sh/csh by using native facilities of Ruby. This is in the standard library?
psh in Perl -- Perl Shell (psh) combines aspects of bash and other shells with the power of Perl scripting. This one is notable because Perl has a heavy influence from shell, sed, and awk. It appears it's still not close enough.
scsh in Scheme -- Scsh has two main 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. Oil also aims to have a complete syscall library.
inferior-shell in Common Lisp -- This CL library allows you to spawn local or remote processes and shell pipes. It lets me use CL in many cases where I would previously write shell scripts.
forsh in Forth -- forsh is a shell built on top of gforth. It allows one to easily operate a unix-like operating system without leaving the gforth environment
Ammonite-Ops in Scala -- a library to make common filesystem operations in Scala as concise and easy-to-use as from the Bash shell
HSH in Haskell -- HSH is designed to let you mix and match shell expressions with Haskell programs.
Caml-Shcaml: an OCaml Library for Unix Shell Programming
closh -- Bash-like shell based on Clojure. This may have some of its own syntax, but it also uses Clojure syntax.
rash -- Racket
Internal Awk DSLs
FuncShell – A Haskell-based alternative to awk -- Also has links to sqawk in SQL, luawk in Lua.
Internal Build Tool DSLs
As with shells, each language community has explored idea of using their language to express build rules.
SCons in Python -- Configuration files are Python scripts--use the power of a real programming language to solve build problems
Rake in Ruby -- Rakefiles (rake's version of Makefiles) are completely defined in standard Ruby syntax. The book Beautiful Code has an essay by Matz which discusses why this is possible and nice in Ruby.
Jake in JavaScript -- A Jakefile is just executable JavaScript. You can include whatever JavaScript you want in it.
Grunt in JavaScript -- This is called a "task runner" rather than a build tool. A shell is also a task runner! The Gruntfile can execute arbitrary code and do I/O, i.e. read package.json files.
Shake in Haskell -- Shake is implemented as a Haskell library, and Shake build systems are structured as Haskell programs which make heavy use of the Shake library functions
sbt in Scala -- Scala-based build definition that can use the full flexibility of Scala code
Shell Complements
ShellJs -- This is the opposite of a shell in JavaScript -- it's all the Unix utilities in JavaScript, and you use JS as your shell language.
Scientific Workflow Languages
Scientific Workflow System on Wikipedia has a huge list.
-
Cuneiform -- Cuneiform combines the strong points of functional programming languages, distributed databases, and workflow management systems.
- Cuneiform: Past, Present, and Future. Integrates with bash, Perl, Python, and R.
-
Nextflow -- an external DSL, e.g.
process { }. Nextflow enables scalable and reproducible scientific workflows using software containers. It allows the adaptation of pipelines written in the most common scripting languages. - Common Workflow Language -- The Common Workflow Language (CWL) is a specification for describing analysis workflows and tools in a way that makes them portable and scalable across a variety of software and hardware environments, from workstations to cluster, cloud, and high performance computing (HPC) environments. CWL is designed to meet the needs of data-intensive science, such as Bioinformatics, Medical Imaging, Astronomy, Physics, and Chemistry.
- SciPipe -- SciPipe is a library for writing scientific workflows (sometimes also called "pipelines") of shell commands that depend on each other, in the Go programming language
- HN thread on dgsh mentions many similar systems.
POSIX Shells
See list starting at http://www.oilshell.org/cross-ref.html#bash
TODO: add links
GNU bash -- most popular shell in the world, on Linux, Mac, Windows
ksh / pdksh / mksh -- ksh was a proprietary extension of the original Bourne shell; pdksh was an open source clone of ksh; mksh is a fork of pdksh and used on Android.
dash / busybox ash (same lineage)
busybox hush -- shell in one file.
yash -- ground up. Includes line editing library. Debian package.
zsh (not POSIX compatible by default)
Publications and Academic Papers
TODO:
- Thompson shell
- Bourne Shell
- ksh paper (Usenix)
- bash papers
A Pipe Has Two Ends. Using APL in a multiprocess/multiprocessor environment. -- 1989. A proposal for a flexible but easy to use syntax. ... I offer for general consideration a device that allows data to be piped out of APL, through (a series of) shell commands, and back into APL.
TODO
Videos
Programming Design and Implementation
TODO
Books
Programming Design and Implementation
See http://www.oilshell.org/cross-ref.html
TODO
Tools / Software
See http://www.oilshell.org/cross-ref.html
Pages with Collections of Links
Unix Shell on Wikipedia -- Some useful links, most of which are on this page.
List of build automation software on Wikipedia
UNIX Shell Implementations on rosettacode.org
comp.unix.shell thread -- A huge list of links to shell implementations.