Skip to content

Instantly share code, notes, and snippets.

@bastman
Last active October 16, 2019 07:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bastman/d682291f2cc4d5c96f6aa5a294ade932 to your computer and use it in GitHub Desktop.
Save bastman/d682291f2cc4d5c96f6aa5a294ade932 to your computer and use it in GitHub Desktop.
awesome shell implementations

fish

https://fishshell.com/

A smart and user-friendly command line shell. it has proper autocomplete for make and git etc.

magic-wormhole

https://github.com/warner/magic-wormhole

get things from one computer to another, safely. easy way to transfer files to and from a server.

nushell

https://www.jonathanturner.org/2019/08/introducing-nushell.html

book: https://book.nushell.sh/en repo: https://github.com/nushell/nushell

A new shell, written in Rust. It draws inspiration from the classic Unix philosophy of pipelines, the structured data approach of PowerShell, functional programming, systems programming, and more.

e.g.:

> open people.psv | lines | split-column "|"
> ls | get name | echo $it
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment