Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/isbadawi/ish
it's a shell
https://github.com/isbadawi/ish
Last synced: 22 days ago
JSON representation
it's a shell
- Host: GitHub
- URL: https://github.com/isbadawi/ish
- Owner: isbadawi
- License: mit
- Created: 2015-04-19T02:40:31.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-05-08T03:05:20.000Z (over 9 years ago)
- Last Synced: 2024-04-18T04:11:25.560Z (7 months ago)
- Language: C
- Size: 184 KB
- Stars: 0
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ish
It's a shell.
So far it just supports spawning commands and piping them together, e.g.```bash
$ ish
ish$ echo hello | tr [:lower:] [:upper:] | xargs yes | head -5
HELLO
HELLO
HELLO
HELLO
HELLO
ish$
```