2020-12-17 21:15:52 +00:00
< p align = "center" > You stuffed command shell with aliases, tools and colors but you lose it all when using ssh. The mission of xxh is to bring your favorite shell wherever you go through ssh without root access and system installations.< / p >
2020-04-22 00:04:09 +00:00
2020-03-22 11:35:26 +00:00
< p align = "center" >
2021-03-14 16:33:47 +00:00
If you like the idea of xxh click ⭐ on the repo and < a href = "https://twitter.com/intent/tweet?text=Bring%20your%20favorite%20shell%20wherever%20you%20go%20through%20the%20ssh.&url=https://github.com/xxh/xxh" target = "_blank" > tweet< / a > .
2020-03-22 11:35:26 +00:00
< / p >
2019-11-03 15:13:42 +00:00
2020-04-21 23:20:03 +00:00
< a href = 'https://github.com/xxh/xxh#installation-methods' > < img alt = '[xxh demo]' src = 'https://raw.githubusercontent.com/xxh/static/master/xxh-demo2.gif' > < / a >
2020-04-05 12:04:58 +00:00
2020-04-22 07:25:03 +00:00
< table border = "0" width = "100%" >
< col style = "width:33%" >
< col style = "width:33%" >
< col style = "width:33%" >
< tbody >
2020-04-22 09:46:01 +00:00
< tr style = "border: 0px !important;" >
2020-12-17 21:15:52 +00:00
< td valign = "top" style = "border: 0px !important;" > < b > Portable< / b > . Preparing portable shells and plugins occurs locally and then xxh uploads the result to the host. No installations or root access on the host required. Security and host environment a prime focus.< / td >
< td valign = "top" style = "border: 0px !important;" > < b > Hermetic< / b > . Deleting < code > ~/.xxh< / code > directory from the remote host will make the remote environment function as if xxh was never there. By default your home is the < code > .xxh< / code > directory and you can < a href = "https://github.com/xxh/xxh/wiki#how-to-set-homeuser-as-home-on-host" > choose the hermetic level of your xxh session< / a > .< / td >
< td valign = "top" style = "border: 0px !important;" > < b > Careful< / b > . No blindfold copying config files from local to remote host. Following privacy and repeatability practices the best way is to fork the xxh plugin or shell example and pack your configs into it. < / td >
2020-04-22 07:03:11 +00:00
< / tr >
2020-04-22 09:46:01 +00:00
< tr style = "border: 0px !important;" >
2021-05-03 16:58:25 +00:00
< td valign = "top" style = "border: 0px !important;" > < b > Be open and fork-ready< / b > . Every xxh repo could be forked, customized and reused without waiting for a package management system, xxh release or any third party packages. Five shells are currently supported and more could be added by the community.< / td >
2021-09-30 13:19:50 +00:00
< td valign = "top" style = "border: 0px !important;" > < b > Do more< / b > . The xxh packages are not only about shells. Any type of tool or code could be behind an entrypoint. If you want to run < a href = "https://github.com/browsh-org/browsh" > browsh< / a > on the remote host, just put its portable version as an entrypoint in the xxh-shell.< / td >
2020-12-17 21:15:52 +00:00
< td valign = "top" style = "border: 0px !important;" > < b > Chameleon< / b > . Switching the shells is as easy as possible and you don't have to be locked in to one shell. Choose your current shell based on the task you want to solve: < code > xxh anyhost +s xonsh< / code > for a python environment, osquery for simple querying, fish for modern features or time-tested zsh and bash for speed. < / td >
2020-04-22 07:03:11 +00:00
< / tr >
2020-04-22 07:25:03 +00:00
< / tbody >
2020-04-22 07:03:11 +00:00
< / table >
2020-04-22 06:57:40 +00:00
2020-03-22 10:07:08 +00:00
## Installation methods
2020-04-07 06:10:54 +00:00
#### [PyPi 3](https://pypi.org/project/xxh-xxh/)
2020-03-14 11:59:58 +00:00
```shell script
2020-04-05 10:13:42 +00:00
pip3 install xxh-xxh
```
2021-03-13 16:43:07 +00:00
#### [pipx](https://pipxproject.github.io/pipx/) - good alternative to brew and pip, read [comparison](https://pipxproject.github.io/pipx/comparisons/)
2020-05-08 14:53:00 +00:00
```shell script
pipx install xxh-xxh
```
2020-09-25 15:13:37 +00:00
#### [Conda-forge](https://conda-forge.org/) [feedstock](https://github.com/conda-forge/xxh-xxh-feedstock)
```shell script
conda config --add channels conda-forge
conda install xxh-xxh
```
2020-04-05 10:13:42 +00:00
#### [Homebrew](https://brew.sh/)
```shell script
2020-05-08 14:56:28 +00:00
brew install xxh
2019-11-04 08:58:11 +00:00
```
2020-03-27 19:17:21 +00:00
2021-08-19 04:36:46 +00:00
#### [Macports](https://www.macports.org/)
```shell script
sudo port install xxh
```
2020-03-27 19:17:21 +00:00
#### Linux portable binary
2020-04-05 10:15:58 +00:00
```shell script
2020-03-27 19:17:21 +00:00
mkdir ~/xxh & & cd ~/xxh
2021-03-14 15:56:45 +00:00
wget https://github.com/xxh/xxh/releases/download/0.8.7/xxh-portable-musl-alpine-Linux-x86_64.tar.gz
2020-03-27 19:17:21 +00:00
tar -xzf xxh-portable-musl-alpine-Linux-x86_64.tar.gz
./xxh
```
2020-08-30 11:42:10 +00:00
#### Linux [AppImage](https://appimage.org/)
2020-04-05 10:15:58 +00:00
```shell script
2020-03-22 10:07:08 +00:00
mkdir ~/xxh & & cd ~/xxh
2021-03-14 15:56:45 +00:00
wget -O xxh https://github.com/xxh/xxh/releases/download/0.8.7/xxh-x86_64.AppImage
2020-03-27 19:46:32 +00:00
chmod +x xxh & & ./xxh
2020-03-22 10:07:08 +00:00
```
2021-03-14 17:11:54 +00:00
To run AppImage on Alpine Linux [install ](https://github.com/sgerrand/alpine-pkg-glibc/issues/153#issuecomment-795334536 ) [alpine-pkg-glibc ](https://github.com/sgerrand/alpine-pkg-glibc ) with [localedef ](https://github.com/sgerrand/alpine-pkg-glibc#locales ).
2020-03-19 06:19:13 +00:00
2020-04-01 13:35:49 +00:00
## Shells
2020-05-22 06:23:04 +00:00
Currently supported OS for target host is Linux on x86_64.
2020-04-01 13:35:49 +00:00
2020-09-19 15:31:53 +00:00
| xxh-shell | status | [xxh-plugins ](https://github.com/xxh/xxh/wiki#plugins ) | [seamless ](https://github.com/xxh/xxh/wiki#seamless-mode ) | demo |
2020-03-29 09:12:08 +00:00
|-----------------------------------------------------------------------|------------|-------------|---------|------|
2021-11-29 20:03:44 +00:00
| ** [xonsh ](https://github.com/xxh/xxh-shell-xonsh )** | stable | [autojump ](https://github.com/xxh/xxh-plugin-xonsh-autojump ), [[+]](https://github.com/xxh/xxh-plugin-xonsh-example) | `xxh.xsh` | < a href = "https://asciinema.org/a/osSEzqnmH9pMYEZibNe2K7ZL7" target = "_blank" > demo</ a > |
| ** [zsh ](https://github.com/xxh/xxh-shell-zsh )** | stable | [ohmyzsh ](https://github.com/xxh/xxh-plugin-zsh-ohmyzsh ), [p10k ](https://github.com/xxh/xxh-plugin-zsh-powerlevel10k ), [[+]](https://github.com/xxh/xxh-plugin-zsh-example) | `xxh.zsh` | < a href = "https://asciinema.org/a/rCiT9hXQ5IdwqOwg6rifyFZzb" target = "_blank" > demo</ a > |
2020-04-22 09:16:56 +00:00
| ** [fish ](https://github.com/xxh/xxh-shell-fish )** | stable | [ohmyfish ](https://github.com/xxh/xxh-plugin-fish-ohmyfish ), [fisher ](https://github.com/xxh/xxh-plugin-fish-fisher ), [userconfig ](https://github.com/xxh/xxh-plugin-fish-userconfig ), [[+]](https://github.com/xxh/xxh-plugin-fish-example) | [todo ](https://github.com/xxh/xxh/issues/74 ) |
2021-11-29 20:03:44 +00:00
| ** [bash ](https://github.com/xxh/xxh-shell-bash )** | stable | [ohmybash ](https://github.com/xxh/xxh-plugin-bash-ohmybash ), [[+]](https://github.com/xxh/xxh-plugin-bash-example) | `xxh.bash` | < a href = "https://asciinema.org/a/314508" target = "_blank" > demo</ a > |
2020-03-29 09:12:08 +00:00
| ** [osquery ](https://github.com/xxh/xxh-shell-osquery )** | beta | | | |
| ** [fish-appimage ](https://github.com/xxh/xxh-shell-fish-appimage )** | alpha | | | |
2021-11-29 20:02:25 +00:00
| ** [elvish ](https://github.com/krageon/xxh-shell-elvish )** | alpha | | | |
2020-04-05 01:18:39 +00:00
2020-03-31 07:50:43 +00:00
[Search xxh shell on Github ](https://github.com/search?q=xxh-shell&type=Repositories ) or [Bitbucket ](https://bitbucket.org/repo/all?name=xxh-shell ) or [create your shell entrypoint ](https://github.com/xxh/xxh-shell-example ) to use another portable shell.
2020-03-22 10:45:17 +00:00
2020-04-14 07:05:48 +00:00
### Prerun plugins
2020-12-17 21:15:52 +00:00
[Prerun plugins ](https://github.com/xxh/xxh/wiki#plugins ) allow you to bring any portable tools, dotfiles or aliases to xxh session before running shell.
2020-04-14 07:01:57 +00:00
2021-03-28 10:39:50 +00:00
Pinned plugins: ** [core ](https://github.com/xxh/xxh-plugin-prerun-core )** (xxh-sudo, xxh-screen), ** [dotfiles ](https://github.com/xxh/xxh-plugin-prerun-dotfiles )**, ** [docker ](https://github.com/xxh/xxh-plugin-prerun-docker )**, ** [python ](https://github.com/xxh/xxh-plugin-prerun-python )**, ** [xxh ](https://github.com/xxh/xxh-plugin-prerun-xxh )**, ** [vim ](https://github.com/xxh/xxh-plugin-prerun-vim )**, ** [zoxide ](https://github.com/xxh/xxh-plugin-prerun-zoxide )**. There is [cookiecutter template to create prerun plugin ](https://github.com/xxh/cookiecutter-xxh-plugin-prerun ).
2020-04-14 07:01:57 +00:00
2020-03-22 10:45:17 +00:00
## Usage
2020-12-17 21:15:52 +00:00
Use `xxh` instead of `ssh` when connecting to Linux hosts without changing ssh arguments:
2020-03-14 12:01:51 +00:00
```
2020-03-22 10:45:17 +00:00
xxh < host from ~ / . ssh / config >
xxh [ssh arguments] [user@]host[:port] [xxh arguments]
2020-05-01 15:05:49 +00:00
xxh local [xxh arguments]
2019-11-03 14:34:38 +00:00
```
2020-04-04 21:54:16 +00:00
2020-03-22 10:45:17 +00:00
Common examples (use `xxh --help` to get info about arguments):
2020-03-28 21:01:32 +00:00
```yaml
2020-05-24 11:41:41 +00:00
xxh anyhost # Connect to the host
xxh -i id_rsa -p 2222 anyhost # Using ssh arguments: port and key
2020-12-17 21:15:52 +00:00
xxh anyhost +s zsh +i # Set the shell and install it without yes/no question
2020-05-24 11:41:41 +00:00
xxh anyhost +s xonsh +hhh "~" # Set /home/user as home directory (read Q& A)
2020-12-17 21:15:52 +00:00
xxh anyhost +s bash +I xxh-plugin-bash-vim # Preinstall a plugin
2020-05-24 11:41:41 +00:00
xxh anyhost +if +q # Force reinstall xxh on the host in quiet mode
2020-12-17 21:15:52 +00:00
xxh anyhost +hh /tmp/xxh +hhr # Upload xxh to /tmp/xxh and remove when disconnecting
2020-05-24 11:41:41 +00:00
source xxh.zsh anyhost +I xxh-plugin-zsh-ohmyzsh # Connect in seamless mode with ohmyzsh plugin
xxh local +s xonsh # Experimental: build xxh environment inplace and without ssh
2020-05-01 15:05:49 +00:00
```
2020-12-17 21:15:52 +00:00
For reusing arguments and simplifying xxh usage (like shortening to `xxh anyhost` ) there is a [config file ](https://github.com/xxh/xxh/wiki#config-file ).
2020-02-16 17:17:07 +00:00
2021-12-09 22:36:31 +00:00
**Why the plus sign for the xxh arguments?** The xxh is using the plus sign for the xxh arguments to save the ability to use minus sign for the original ssh arguments. This allows just replace the first two letters in the `ssh` command to convert it to the `xxh` command.
2021-12-09 18:07:32 +00:00
2020-12-17 21:15:52 +00:00
### Installing xxh packages
2020-05-01 15:08:25 +00:00
```bash
2020-04-04 22:04:07 +00:00
xxh [+I xxh-package +I ...] [+L] [+RI xxh-package +RI ...] [+R xxh-package +R ...]
2020-04-04 21:54:16 +00:00
```
2020-04-04 21:56:27 +00:00
Different ways to set the xxh package source:
2020-05-01 15:08:25 +00:00
```yaml
2020-04-04 21:56:27 +00:00
xxh +I xxh-shell-example # install from https://github.com/xxh
2020-04-04 21:54:16 +00:00
xxh +I https://github.com/xxh/xxh-shell-example # short url for github only, for other sources use examples below or add support
xxh +I https://github.com/xxh/xxh-shell-example/tree/mybranch # short url for github only, for other sources use examples below or add support
2020-04-04 22:05:58 +00:00
xxh +I xxh-shell-example+git+https://github.com/xxh/xxh-shell-example # long url for any git repo
xxh +I xxh-shell-example+git+https://github.com/xxh/xxh-shell-example/tree/mybranch # github only branch support
2021-03-28 14:54:45 +00:00
xxh +I xxh-shell-example+git+git@github.com:githubuser/xxh-shell-example.git # install from private repository using ssh
2020-04-04 21:54:16 +00:00
xxh +I xxh-shell-example+path+/home/user/my-xxh-dev/xxh-shell-example # install from local path
```
2020-05-01 15:05:49 +00:00
### Using xxh inplace without ssh connection
2020-05-15 12:21:25 +00:00
This is experimental magic. Please read the text below twice.
2020-12-17 21:15:52 +00:00
If you have shell access on the host or you're in a docker container and you can't ssh to it
2020-05-01 15:05:49 +00:00
then you can download and build hermetic xxh environment inplace. The `xxh local` command works
2021-03-13 16:43:07 +00:00
exactly like `xxh remote_host` and creates a hermetic environment in `~/.xxh` by default.
2020-05-01 15:05:49 +00:00
2020-12-17 21:15:52 +00:00
At this time we don't have portable build tools like `git` , `wget` , `curl` , `tar` and others which
could be required by some xxh package build scripts. When running `xxh local` it is expected that the tools are present on the host.
2020-05-01 15:05:49 +00:00
2020-12-17 21:15:52 +00:00
To run xxh inplace on Linux x86_64 just copy and paste these bash commands:
2020-05-01 15:05:49 +00:00
```bash
XH=~/.xxh \
& & XD=https://github.com/xxh/xxh-portable/raw/master/result/xxh-portable-musl-alpine-Linux-x86_64.tar.gz \
& & mkdir -p $XH & & cd $XH \
& & ( [[ -x $(command -v curl) ]] & & curl -L $XD || wget -O- $XD ) | tar zxf - xxh \
& & echo 'Usage: ./xxh local [+s xonsh/zsh/fish/osquery/bash]'
```
2020-12-17 21:15:52 +00:00
Next time you're on host just run `~/.xxh/xxh local` and you will enter your xxh environment.
2020-05-01 15:05:49 +00:00
2020-04-04 21:54:16 +00:00
## Examples of use cases
2020-04-19 08:59:42 +00:00
### Python with pip everywhere without installation
2020-04-19 09:00:40 +00:00
#### Way 1. Using xonsh
2020-04-19 08:59:42 +00:00
```
2020-05-01 15:05:49 +00:00
xxh anyhost +s xonsh
2020-04-19 08:59:42 +00:00
2020-05-01 15:05:49 +00:00
anyhost> python --version
2020-04-19 08:59:42 +00:00
Python 3.8.2
```
You'll get python-powered [xonsh ](https://xon.sh ) shell with portable python and pip on the host without any system installations on the host.
2021-03-31 07:54:13 +00:00
You can install PyPi packages manually or bring them with you automatically by using [xxh-plugin-prerun-dotfiles ](https://github.com/xxh/xxh-plugin-prerun-dotfiles ). Also don't forget about xxh-plugins like [zoxide ](https://github.com/xxh/xxh-plugin-prerun-zoxide ).
2020-04-19 09:01:21 +00:00
2020-04-19 09:00:40 +00:00
#### Way 2. Using portable python on any xxh shell
2020-04-19 08:59:42 +00:00
```
xxh +RI xxh-plugin-prerun-python
2020-05-01 15:05:49 +00:00
xxh anyhost +s zsh
2020-04-19 08:59:42 +00:00
2020-05-01 15:05:49 +00:00
anyhost> python --version
2020-04-19 08:59:42 +00:00
Python 3.8.2
2020-05-01 15:05:49 +00:00
anyhost> pip install pandas
2020-04-19 08:59:42 +00:00
```
2020-12-17 21:15:52 +00:00
Using [xxh-plugin-prerun-python ](https://github.com/xxh/xxh-plugin-prerun-python ) you'll get a portable
Python AppImage which can be used on a host without python and with any xxh shell.
2020-04-19 08:59:42 +00:00
### Using docker on host without root access
Try [xxh-plugin-prerun-docker ](https://github.com/xxh/xxh-plugin-prerun-docker ):
```
xxh +RI xxh-plugin-prerun-docker
2020-05-01 15:05:49 +00:00
xxh anyhost +if
2020-04-19 08:59:42 +00:00
2020-05-01 15:05:49 +00:00
anyhost> xxh-docker-run
anyhost> docker ps
2020-04-19 08:59:42 +00:00
CONTAINER ID IMAGE COMMAND
2020-05-01 15:05:49 +00:00
anyhost> docker run --rm hello-world | grep Hello
2020-04-19 08:59:42 +00:00
Hello from Docker!
2020-05-01 15:05:49 +00:00
anyhost> xxh-docker-stop
2020-04-19 08:59:42 +00:00
```
2020-04-04 20:38:32 +00:00
2020-04-19 14:39:40 +00:00
### Bring dotfiles to xxh session
2020-04-04 20:38:32 +00:00
2020-12-17 21:15:52 +00:00
There is the [xxh-plugin-prerun-dotfiles ](https://github.com/xxh/xxh-plugin-prerun-dotfiles ) plugin which creates config files
2020-04-19 14:39:40 +00:00
when you go to the host using xxh. You can fork it and create your cozy settings once and forever.
2020-04-04 20:38:32 +00:00
2020-04-19 14:39:40 +00:00
### Seamless Oh My Zsh ([demo](https://asciinema.org/a/rCiT9hXQ5IdwqOwg6rifyFZzb))
2020-04-04 20:38:32 +00:00
```shell script
2020-05-01 15:05:49 +00:00
source xxh.zsh anyhost +I xxh-plugin-zsh-ohmyzsh +if +q
2020-04-04 20:38:32 +00:00
```
This command brings your current Oh My Zsh session theme to the xxh session. If you need more complex settings just fork
the [xxh-plugin-zsh-ohmyzsh ](https://github.com/xxh/xxh-plugin-zsh-ohmyzsh ) and hack it.
2020-04-05 10:19:57 +00:00
### Read host as a table with [osquery](https://github.com/xxh/xxh-shell-osquery)
2020-04-04 20:38:32 +00:00
```
2020-05-01 15:05:49 +00:00
$ xxh anyhost +s osquery
2020-04-04 20:38:32 +00:00
osquery> SELECT * FROM users WHERE username='news';
+-----+-----+----------+-------------+-----------------+-------------------+
| uid | gid | username | description | directory | shell |
+-----+-----+----------+-------------+-----------------+-------------------+
| 9 | 9 | news | news | /var/spool/news | /usr/sbin/nologin |
+-----+-----+----------+-------------+-----------------+-------------------+
```
### All in one portable home
2020-12-17 21:15:52 +00:00
xxh is very agile. You can create your own `xxh-shell` (the shell part means it has an entrypoint) which can have any portable tools
that could help you on the host. [Bash ](https://github.com/xxh/xxh-shell-bash ) xxh-shell is one of these
2020-04-04 20:38:32 +00:00
platforms that could be forked and stuffed.
2020-04-04 21:54:16 +00:00
## [Questions and answers](https://github.com/xxh/xxh/wiki)
2020-03-30 20:05:37 +00:00
2020-04-19 11:35:37 +00:00
- [Welcome to xxh family ](https://github.com/xxh/xxh/wiki#welcome-to-xxh-family )
* [How it works ](https://github.com/xxh/xxh/wiki#how-it-works )
2020-04-05 00:43:23 +00:00
+ [Simple answer ](https://github.com/xxh/xxh/wiki#simple-answer )
+ [Detailed workflow with code ](https://github.com/xxh/xxh/wiki#detailed-workflow-with-code )
2020-04-19 11:35:37 +00:00
* [Plugins ](https://github.com/xxh/xxh/wiki#plugins )
* [Connection speed ](https://github.com/xxh/xxh/wiki#connection-speed )
* [Seamless mode ](https://github.com/xxh/xxh/wiki#seamless-mode )
* [Config file ](https://github.com/xxh/xxh/wiki#config-file )
2020-04-05 00:43:23 +00:00
- [Packages for xxh ](https://github.com/xxh/xxh/wiki#packages-for-xxh )
2020-04-19 11:35:37 +00:00
* [Install shells and plugins ](https://github.com/xxh/xxh/wiki#install-shells-and-plugins )
- [Advanced ](https://github.com/xxh/xxh/wiki#advanced )
* [How to set /home/user as home on host ](https://github.com/xxh/xxh/wiki#how-to-set-homeuser-as-home-on-host )
* [Using sudo ](https://github.com/xxh/xxh/wiki#using-sudo )
* [Using xxh in xxh session ](https://github.com/xxh/xxh/wiki#using-xxh-in-xxh-session )
* [Target host is behind another host ](https://github.com/xxh/xxh/wiki#target-host-is-behind-another-host )
* [Environment variables ](https://github.com/xxh/xxh/wiki#environment-variables )
2020-04-05 00:43:23 +00:00
- [Development and contribution ](https://github.com/xxh/xxh/wiki#development-and-contribution )
2020-04-19 11:35:37 +00:00
* [The easiest way to debug shell and plugins ](https://github.com/xxh/xxh/wiki#the-easiest-way-to-debug-shell-and-plugins )
* [Prerun plugins ](https://github.com/xxh/xxh/wiki#prerun-plugins )
* [Change plugin run order ](https://github.com/xxh/xxh/wiki#change-plugin-run-order )
- [New questions ](https://github.com/xxh/xxh/wiki#new-questions )
2020-04-02 14:39:41 +00:00
2020-02-12 14:08:21 +00:00
## Development
2021-03-15 09:38:15 +00:00
In the [xxh development environment ](https://github.com/xxh/xxh/tree/master/xde ) there is full [dockerised ](https://www.docker.com/ ) environment
2020-12-17 21:15:52 +00:00
for development, testing and contribution. The process of testing and development is orchestrated by `xde` tool and is as
2020-04-04 20:38:32 +00:00
easy as possible.
2020-02-13 10:22:57 +00:00
2020-12-17 21:15:52 +00:00
**We have teams.** If you're in a team it does not mean you have an obligation to do something. The main goal of teams is to create groups
of passionate people who could help or support solving complex problems. Some people could be an expert in one shell and a
2020-04-04 20:38:32 +00:00
newbie in another shell and mutual assistance is the key to xxh evolution. [Ask join. ](https://github.com/xxh/xxh/issues/50 )
2020-03-02 12:02:28 +00:00
2020-02-09 09:10:08 +00:00
## Thanks
2020-05-24 11:37:05 +00:00
* **niess** for great [python-appimage ](https://github.com/niess/python-appimage )
2020-03-17 17:23:09 +00:00
* **probonopd** and **TheAssassin** for hard-working [AppImage ](https://github.com/AppImage )
2020-05-24 11:41:41 +00:00
* **Anthony Scopatz**, **Gil Forsyth** , **Jamie Bliss** , **David Strobach** , **Morten Enemark Lund** and ** @xore ** for amazing [xonsh shell ](https://github.com/xonsh/xonsh )
2020-03-17 17:23:09 +00:00
* **Roman Perepelitsa** for incredible [statically-linked, hermetic, relocatable Zsh ](https://github.com/romkatv/zsh-bin )
2020-04-05 09:57:34 +00:00
* **Johannes Altmanninger** and **Fabian Homborg** for extensive and portable [fish shell ](https://github.com/fish-shell/fish-shell )