https://github.com/anaskhan96/sesh
A (very) simple elegant shell in Go
https://github.com/anaskhan96/sesh
go golang shell
Last synced: 3 months ago
JSON representation
A (very) simple elegant shell in Go
- Host: GitHub
- URL: https://github.com/anaskhan96/sesh
- Owner: anaskhan96
- License: mit
- Created: 2018-03-23T03:44:41.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-02-21T19:00:53.000Z (over 4 years ago)
- Last Synced: 2025-03-24T07:48:50.128Z (4 months ago)
- Topics: go, golang, shell
- Language: Go
- Homepage:
- Size: 88.9 KB
- Stars: 33
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sesh

`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 autocompletionApart 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*.