tesh
tesh
A highly dynamic object-oriented shell environment built specifically for programmers
Installation
$ git clone git@github.com:cardmagic/tesh.git
$ cd tesh
$ crystal build
$ mv tesh /usr/local/bin
$ tesh
Usage
Tesh is built to look and feel like bash almost all the time.
$ echo hello world
hello world
But then add various programming primitives and object-oriented classes that engineers expect.
$ echo 1 + 2
3
Manipulating data becomes very natural for anyone familiar with Ruby, Javascript or Python.
$ ls
foo bar baz
$ ls.upcase
FOO BAR BAZ
$ ls.split[1]
bar
$ ls.split.map { |i| i.capitalize }
Foo Bar Baz
$ (ls -la).split.first
drwxr-xr-x
$ ls.split.last.class
Directory
$ if ls.split.last.present?; then
cd ls.split.last
fi
A lot of the OO syntax and methods are borrowed from Ruby, but unlike using IRB, almost all primitive bash calls work out of the box as well.
You can override binaries and native keywords with your own custom functions, but still call back to the native binaries with the super call.
$ ls
foo bar baz
$ function ls { super.upcase }
$ ls
FOO BAR BAZ
Contributing
- Fork it (https://github.com/cardmagic/lucash/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
Contributors
- Lucas Carlson - creator and maintainer
Repository
tesh
Owner
Statistic
- 3
- 0
- 0
- 0
- 1
- over 3 years ago
- February 24, 2021
License
MIT License
Links
Synced at
Thu, 21 Nov 2024 07:51:10 GMT
Languages