sshch/README.md

36 lines
956 B
Markdown
Raw Normal View History

2017-07-25 10:07:47 +00:00
SSH connection manager with curses interface
======
sshch is released under DWTWL 2.5 license
2017-07-25 10:10:53 +00:00
### Screenshot
2017-07-25 10:07:47 +00:00
![sshch](https://raw.githubusercontent.com/zlaxy/sshch/master/sshch_screenshot.png)
### Installing
To install for all users:
```
sudo python setup.py install
```
To install just for current user:
```
mkdir ~/.local/bin
cp sshch/sshch ~/.local/bin/
```
### Using
To run curses interface:
```
sshch
```
To run command line help:
```
sshch -h
```
**If you want to use unsafe 'password' feature you must install 'sshpass' first.**
2017-09-13 09:05:17 +00:00
2018-04-08 13:27:16 +00:00
- If you want to use bash autocompletion function with sshch, copy autocompletion script to /etc/bash_completion.d/:
```
sudo cp sshch_bash_completion.sh /etc/bash_completion.d/sshch
```
2018-04-04 21:31:37 +00:00
(changes will come into effect with new bash session)
2018-04-08 13:27:16 +00:00
- If you want to use zsh autocompletion:
2018-04-04 21:31:37 +00:00
1) Place File in a Directory where ZSH can find it
-> Search Path is Stored in $fpath
-> echo $fpath
2) Rename File to '_sshch'