Crate oursh[][src]

This shell should be both POSIX compatible and yet modern and exciting. Fancy features should not be prevented by POSIX compatibility. This will effect the design of the shell.

The name of the shell is oursh which is both somewhat unique, and memorable. It's also a nice name to play with pseudo-satirical themes... right comrade? It's short (ish) and sneakily fits rs in it, which is the extension of Rust programs, the language this will be written in.

Features

  • POSIX compatibility
  • Shebang blocks, {#!/usr/bin/env ruby; puts 1}, {# ... }
  • bash/zsh autocomplete compatibility
  • man / -h / --help parsing
  • Multi-line input
  • Modern scripting language (types, higher-order functions, threading?, etc)
  • obfuscated strings (!'password'!)
  • mosh like remote session support
  • Smart history, sync'd across devices
  • Package manager
  • Sane defaults
  • Fast

Usage

While this project is in early stages, there are no OS packages to use. However, you can compile and run directly from source easily. Just ensure you have rustup installed.

cargo run

Previous Work

I've been using fish as my main shell for a few years now. Fish inspires a lot of the modern syntax.

POSIX compatibility comes from my desire to use this shell as my chsh -s ... shell on Arch Linux. See the full POSIX reference for more information.

I've built and wrote a few things about shells before:

POSIX Reference

See the following sections for building the POSIX sh compliant program language, and interactive terminal based REPL.

  • 3§2 Shell Command Language
    • 10.2 Shell Grammar Rules
  • 2§2.5 Standard I/O Streams
  • 3§1.6 Built-In Utilities
  • 3§1.4 Utility Description Defaults
  • 2§2.3 Error Numbers
  • 1§11 General Terminal Interface
  • 2§2.4 Signal Concepts

Modules

job

Subprocess execution management.

program

Parsing and handling program syntax(es) of the shell.

repl

Quick and effective raw mode repl library for ANSI terminals.

Macros

debug

Print debug information to stderr..