Crates.io

Simple SSH host finder. Fuzzy search built-in.

Table of contents

Installation

From crates.io

shell $ cargo install shf

From source

shell $ git clone https://github.com/jsmits/shf.git $ cd shf

cargo build

shell $ cargo build --release (put the resulting target/release/shf on your PATH)

cargo install

$ cargo install --path .

Usage

```shell $ shf -h shf 0.1.7 Simple SSH host finder

USAGE: shf [OPTIONS]

OPTIONS: -c, --config SSH config file [default: ~/.ssh/config] -h, --help Print help information -l, --list Print all hosts -V, --version Print version information ```

Examples

Fuzzy search through your hosts

In your ~/.ssh/config

shell $ shf

In a different SSH config file

shell $ shf -c /path/to/ssh/config

Search a host and directly SSH into it

Bash / Zsh

shell $ ssh $(shf)

Fish

shell $ ssh (shf)

List all hosts

shell $ shf -l

How to contribute

Please create a new issue when you encounter a bug or have any suggestions or feature requests. Pull requests are welcome as well.