xxh is for using Python-powered xonsh shell wherever you go through the ssh.
Help spread the word about xxh! Click β on the repo and tweet the link!
python3 -m pip install --upgrade xonssh-xxh
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.
ποΈ The best if you're using ssh config with private keys to authorization. In case of using password to avoid password typing many times use +PP or +P options.
$ ./xxh -h
usage: xxh <host from ~/.ssh/config>
usage: xxh [ssh arguments] [user@]host[:port] [xxh arguments]
usage: xxh [-h] [-V] [-p SSH_PORT] [-l SSH_LOGIN] [-i SSH_PRIVATE_KEY] [-o SSH_OPTION -o ...]
[user@]host[:port]
[+i] [+if] [+P PASSWORD] [+PP]
[+lxh LOCAL_XXH_HOME] [+hxh HOST_XXH_HOME] [+he HOST_EXECUTE_FILE]
[+m METHOD] [+v] [+vv]
The xxh is for using the xonsh shell wherever you go through the ssh.
____ __________ @ @
______ / \ \__/
____ / ______ \ / \ contribution
_____ / / __ \ \ / _/ https://github.com/xonssh/xxh
___ ( / / / \ \ /
\ \___/ / / / plugins
____\ /__/ / https://github.com/search?q=xxh-plugin
/ \________/ /
/____________________/
required arguments:
[user@]host[:port] Destination may be specified as [user@]host[:port] or host from ~/.ssh/config
common arguments:
-h, --help show this help message and exit
--version, -V show program's version number and exit
ssh arguments:
-p SSH_PORT Port to connect to on the remote host.
-l SSH_LOGIN Specifies the user to log in as on the remote machine.
-i SSH_PRIVATE_KEY File from which the identity (private key) for public key authentication is read.
-o SSH_OPTION -o ... SSH options are described in ssh man page. Example: -o Port=22 -o User=snail
xxh arguments:
+i, ++install Install xxh to destination host.
+if, ++install-force Removing the host xxh home and install xxh again.
+P PASSWORD, ++password PASSWORD
Password for ssh auth.
+PP, ++password-prompt
Enter password manually using prompt.
+lh LOCAL_XXH_HOME, ++local-xxh-home LOCAL_XXH_HOME
Local xxh home path. Default: ~/.xxh
+hh HOST_XXH_HOME, ++host-xxh-home HOST_XXH_HOME
Host xxh home path. Default: ~/.xxh
+he HOST_EXECUTE_FILE, ++host-execute-file HOST_EXECUTE_FILE
Execute script file placed on host and exit.
+m METHOD, ++method METHOD
Portable method: appimage
+v, ++verbose Verbose mode.
+vv, ++vverbose Super verbose mode.
xxh plugin is the set of xsh scripts which will be run when you'll use xxh. You can create xxh plugin with your lovely aliases, tools or color theme and xxh will bring them to your ssh sessions.
π Search xxh plugins on Github
π‘ Create xxh plugin
π Pinned plugins:
- Pipe Liner β processing the lines easy with python and classic shell pipes
- Bar Theme β theme to stay focused
- Autojump β save time on moving thru directories
The xxh xonsh will use pip and python from xonsh.AppImage by default. You can update pip and install packages ordinally:
$ pip install --upgrade pip
$ pip install --upgrade pandas
The packages will appear in $XXH_HOME/pip (~/.xxh/pip by default).
When you run xxh <host> command:
-
If it needed xxh will download portable xonsh shell and store locally to future use.
-
If it needed xxh upload the portable xonsh to the host (
~/.xxhby default) along with init scripts and plugins. -
Finally xxh will make ssh connection to the server and run portable xonsh shell without any addition installs and affection on the target host.
π οΈ Use xxh-dev environment for development, testing and contribution.
If an xontrib or pip package is not found immediately after install you can do reconnect. Xontribs could be reloaded manually without reconnect by executing import importlib; importlib.reload(sys.modules['xontrib']).
Current method to make xonsh portable is using an AppImage which was built on manylinux2010 (PEP 571). In case you see the error like /xonsh-x86_64.AppImage: /lib/x86_64-linux-gnu/libc.so.6: version GLIBC_2.25 not found (required by /ppp/xonsh-x86_64.AppImage) this means you should rebuild the AppImage for older version of linux distributive. Try linuxdeploy-plugin-python.
What will make xxh more universal and stable in the future:
- AppImages run on Alpine
- Fix xonsh for WSL1
- Captured subprocess attributes not queryable until result is evaluated
- @scopatz for https://github.com/xonsh/xonsh
- @probonopd for https://github.com/AppImage
- @niess for https://github.com/niess/linuxdeploy-plugin-python/
- @gforsyth for xonsh/xonsh#3374