xxh/README.md

116 lines
8.6 KiB
Markdown
Raw Normal View History

2020-03-09 22:23:17 +00:00
<p align="center">You chosen a command shell and spent months to stuffed it with shortcuts and colors. But when you move from local to remote host using ssh you lose it all. The mission of xxh is to bring your favorite shell wherever you go through the ssh.</p>
2020-02-08 23:03:26 +00:00
<p align="center">
2020-03-14 07:51:21 +00:00
<a href="https://pypi.org/project/xxh-xxh/" target="_blank"><img src="https://img.shields.io/pypi/v/xxh-xxh.svg" alt="[release]"></a>
2020-03-04 15:27:02 +00:00
<a href="https://asciinema.org/a/osSEzqnmH9pMYEZibNe2K7ZL7" target="_blank"><img alt="[asciinema demo]" src="https://img.shields.io/badge/demo-asciinema-grass"></a>
<a href="#plugins" target="_blank"><img alt="[plugins]" src="https://img.shields.io/badge/extensions-plugins-yellow"></a>
2020-03-14 12:05:33 +00:00
<a href="https://gitter.im/xxh-xxh/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge" target="_blank"><img alt="[gitter chat]" src="https://badges.gitter.im/xxh-xxh/community.svg"></a>
2020-03-14 07:51:21 +00:00
<img alt="[BSD license]" src="https://img.shields.io/pypi/l/xxh-xxh">
2020-02-08 23:03:26 +00:00
</p>
2019-11-03 15:13:42 +00:00
2020-02-22 22:38:40 +00:00
## Install or update
2020-03-14 11:59:58 +00:00
```shell script
2020-03-14 07:51:21 +00:00
python3 -m pip install --upgrade xxh-xxh
2019-11-04 08:58:11 +00:00
```
2020-03-04 15:27:24 +00:00
After install you can just using `xxh` command as replace `ssh` to connecting to the host because `xxh` has seamless support of basic `ssh` command arguments.
2019-11-03 14:34:38 +00:00
2020-02-24 22:17:37 +00:00
## Usage
2020-03-14 12:01:51 +00:00
```
2020-03-14 21:33:26 +00:00
$ ./xxh -h
usage: xxh <host from ~/.ssh/config>
usage: xxh [ssh arguments] [user@]host[:port] [xxh arguments]
usage: xxh [-p SSH_PORT] [-l SSH_LOGIN] [-i SSH_PRIVATE_KEY]
[-o SSH_OPTION -o ...] [+P PASSWORD] [+PP]
[user@]host[:port]
[+i] [+if] [+s SHELL] [+e NAME=VAL +e ...] [+iff] [+hhr]
[+hh HOST_XXH_HOME] [+hf HOST_EXEC_FILE] [+hc HOST_EXEC_CMD]
[+xc XXH_CONFIG] [+lh LOCAL_XXH_HOME] [+v] [+vv] [+q]
2019-11-03 14:34:38 +00:00
```
2020-03-11 11:08:42 +00:00
There is `~/.xxh/.xxhc` [yaml](https://en.wikipedia.org/wiki/YAML) config to save arguments and reuse it:
2020-03-14 11:59:58 +00:00
```yaml
2020-03-11 10:47:09 +00:00
hosts:
2020-03-13 13:46:41 +00:00
myhost: # settings for myhost
-p: 2222 # set special port
+s: xxh-shell-zsh # set zsh shell
2020-03-13 13:50:31 +00:00
+e: ZSH_THEME="clean" # set ohmyzsh theme
2020-03-11 10:47:09 +00:00
2020-03-11 10:52:36 +00:00
"company-.*": # for all hosts by regex pattern
+if: # don't asking about install (++install-force)
+hh: /tmp/.xxh # use special xxh home directory (++host-xxh-home)
2020-03-14 11:44:51 +00:00
+hhr: # remove host xxh home after disconnect (++host-xxh-home-remove)
2020-03-11 10:47:09 +00:00
```
2020-03-11 10:50:57 +00:00
The arguments will be automatically added when you run `xxh myhost` or `xxh company-server1`.
2020-03-11 10:47:09 +00:00
2020-03-04 14:48:54 +00:00
## Supported shells
2020-03-12 11:21:18 +00:00
**[Xonsh](https://github.com/xxh/xxh-shell-xonsh-appimage)** — stable version with [pipeliner](https://github.com/xxh/xxh-plugin-xonsh-pipe-liner), [bar](https://github.com/xxh/xxh-plugin-xonsh-theme-bar), [autojump](https://github.com/xxh/xxh-plugin-xonsh-autojump) plugins.
2019-11-03 14:34:38 +00:00
2020-03-12 23:18:36 +00:00
**[Zsh](https://github.com/xxh/xxh-shell-zsh)** — beta version with [Oh My Zsh](https://github.com/xxh/xxh-plugin-zsh-ohmyzsh) and [powerlevel10k](https://github.com/xxh/xxh-plugin-zsh-powerlevel10k) plugins, waiting for feedback.
2020-03-07 08:11:59 +00:00
2020-03-12 23:18:36 +00:00
**[osquery](https://github.com/xxh/xxh-shell-osquery)** — beta version, waiting for feedback.
2020-03-12 23:14:46 +00:00
2020-03-12 23:18:36 +00:00
**[Fish](https://github.com/xxh/xxh-shell-fish-appimage)** — alpha version, waiting for feedback.
2020-02-16 17:42:27 +00:00
2020-03-12 11:21:18 +00:00
**[Bash](https://github.com/xxh/xxh-shell-bash-zero)** — zero version that just runs bash installed on the host with plugins like [vim](https://github.com/xxh/xxh-plugin-bash-vim).
2020-03-07 08:21:58 +00:00
2020-03-09 22:18:32 +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-sample) to use another portable shell.
2020-02-16 17:17:07 +00:00
2020-03-15 18:35:48 +00:00
## The ideas behind xxh
2020-03-16 07:45:50 +00:00
* **Avoid building on remote host**. The security and careful about environment on the host are behind it. This could be the optional future feature but not now.
2020-03-15 18:35:48 +00:00
* **No copying** config files from local to remote host "as is". The privacy and repeatability reasons are behind it. Every xxh package, shell or plugin is the bridge that use only what required, no more.
2020-03-16 07:14:26 +00:00
* **Portable means clean**. If you delete `~/.xxh` directory from the remote host then xxh has never been on the host. Some temporary files of third party tools you use could be in the home directory after usage but we stand for moving them to the xxh home directory. Feel free to report about this cases.
2020-03-15 18:35:48 +00:00
* **Be fork-ready**. Every repo could be forked, customize and used without affection on package management system, xxh releases or any third party lags.
2020-03-15 18:38:05 +00:00
* **Do more**. The xxh packages are not only about shells. Any type of tool or code could be behind "shell entrypoint". If you want to play Super Mario on the remote host just put it as entrypoint.
2020-03-15 18:35:48 +00:00
* **Be open**. Currently supported four shells and the count could be grow by community.
2020-03-09 23:01:29 +00:00
## Q&A
2020-03-04 14:48:54 +00:00
2020-03-09 23:01:29 +00:00
**What is plugin?** It is the set of scripts which will be run on the host when you go using xxh. It could be shell settings, environment variables, plugins, color themes and everything you need. You can find the links to plugins on [xxh-shells repos](https://github.com/search?q=xxh%2Fxxh-shell&type=Repositories). Feel free to fork it.
2020-02-08 23:32:13 +00:00
2020-03-09 23:01:29 +00:00
**How xxh works?** When you run `xxh myhost` command xxh download portable shell and store locally to future use. Then if it needed xxh upload the portable shell, init scripts and plugins to the host. Finally xxh make ssh connection to the host and run portable shell without any system installs and affection on the target host.
2019-11-03 14:34:38 +00:00
2020-03-14 14:52:22 +00:00
**What about speed?** The first connection takes time for downloading and uploading portable shell. It depends on portable shell size and channel speed. But when xxh is installed on the host and you do just `xxh myhost` then it works as ordinary ssh connection speed. You could monitor all process using `+vv` argument.
2019-11-03 15:22:54 +00:00
2020-03-13 13:46:41 +00:00
## Use cases
2020-03-13 14:39:26 +00:00
### Python everywhere with xonsh
2020-03-13 14:22:12 +00:00
When you run `xxh myhost +s xonsh` you'll get python, pip and python-powered shell on the host without any system installations on the host. Add plugins: [autojump](https://github.com/xxh/xxh-plugin-xonsh-autojump) saves time, [pipeliner](https://github.com/xxh/xxh-plugin-xonsh-pipe-liner) manipulates lines and [bar](https://github.com/xxh/xxh-plugin-xonsh-theme-bar) looks nice.
2020-03-13 13:46:41 +00:00
2020-03-14 20:56:22 +00:00
### Oh My Zsh seamless SSH ([demo](https://asciinema.org/a/rCiT9hXQ5IdwqOwg6rifyFZzb))
2020-03-14 21:35:14 +00:00
Bring Zsh and Oh My Zsh with your current environment to the host:
2020-03-14 11:59:58 +00:00
```shell script
2020-03-14 12:50:41 +00:00
zsh$ xxhp ri xxh-shell-zsh xxh-plugin-zsh-ohmyzsh
2020-03-13 14:22:12 +00:00
zsh$ echo $ZSH_THEME
agnoster
zsh$ source xxh.zsh myhost
myhost> echo $ZSH_THEME
agnoster
2020-03-13 13:46:41 +00:00
```
2020-03-14 21:35:14 +00:00
This `source` command get your current Zsh session theme and plugins and pass it 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-03-13 13:46:41 +00:00
2020-03-13 14:39:26 +00:00
### Read host as a table with osquery
2020-03-14 12:01:51 +00:00
```
2020-03-13 13:46:41 +00:00
$ xxh myhost +s osquery
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
The xxh is very agile. You can create your own `xxh-shell` (shell word means it has entrypoint) which has any portable tools
that you could help you on the host. [Bash-zero](https://github.com/xxh/xxh-shell-bash-zero) xxh-shell is one of this platforms that could be forked and stuffed.
2020-02-12 14:08:21 +00:00
## Development
2020-03-09 22:58:00 +00:00
In the [xxh-dev](https://github.com/xxh/xxh-dev) repo there is full [docker](https://www.docker.com/)ised environment for development, testing and contribution. The process of testing and development is orchestrated by `xde` tool and as easy as possible.
2020-02-13 10:22:57 +00:00
2020-03-10 10:02:49 +00:00
## Community
**Spread the word!** If you like the idea of xxh click ⭐ on the repo and <a href="https://twitter.com/intent/tweet?text=Python-powered%20shell%20wherever%20you%20go%20through%20the%20ssh&url=https%3A%2F%2Fgithub.com%2Fxxh%2Fxxh&related=" target="_blank">tweet the link</a>.
2020-03-10 10:08:30 +00:00
**We have teams.** If you're in team it does not oblige to do something. The main goal of teams is to create group of passionate people who could help or support in complex questions. Some people could be expert in one shell and 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-03-09 22:58:00 +00:00
* **niess** for https://github.com/niess/linuxdeploy-plugin-python/
2020-03-10 10:11:27 +00:00
* **probonopd** and **TheAssassin** for https://github.com/AppImage
2020-03-10 10:19:28 +00:00
* **scopatz**, **gforsyth**, **astronouth7303**, **laloch**, **melund** and **all xore** for https://github.com/xonsh/xonsh