Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/anaskhan96/sesh

A (very) simple elegant shell in Go
https://github.com/anaskhan96/sesh

go golang shell

Last synced: 2 days ago
JSON representation

A (very) simple elegant shell in Go

Awesome Lists containing this project

README

        

# sesh

![](https://raw.githubusercontent.com/anaskhan96/sesh/master/preview.png?token=AWKfRu3IiZ6pI7l5w1BkShc5PbCrnqsNks5a7ub7wA%3D%3D)

`sesh` is a simple (read basic), elegant shell written in Go. It supports the following:
+ Aliasing
+ Piping and I/O redirection
+ Arrow keys up and down for history
+ Tab autocompletion

Apart from this, it has two custom builtins:
+ `walk`: walks through the directory specified as an argument recursively. Takes the current directory as input if no argument is specified.
+ `show`: lists the commands in the PATH having the given argument as its prefix. Lists all the commands in the PATH if no argument is specified.

### Installation

```bash
go get -u github.com/anaskhan96/sesh
```

It can be run by invoking `sesh` from anywhere in the terminal.

---

This project was built under the course *Unix Systems Programming* at *PES University*.