my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
470 B

3 years ago
  1. # knife_ssh plugin
  2. This plugin adds a `knife_ssh` function as well as completion for it, to allow
  3. connecting via ssh to servers managed with [Chef](https://www.chef.io/).
  4. To use it, add `knife_ssh` to the plugins array in your zshrc file:
  5. ```zsh
  6. plugins=(... knife_ssh)
  7. ```
  8. The plugin creates a cache of the Chef node list via `knife`, and stores it
  9. in `$HOME/.knife_comp~`, when first triggering knife_ssh completion.
  10. **Requirements:** `knife` has to be installed.