diff options
author | Marc Cornellà <marc.cornella@live.com> | 2019-12-27 00:58:31 +0100 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2019-12-27 00:58:31 +0100 |
commit | e891fbff9e2e70acfbeff0734cd1fc012861e6ef (patch) | |
tree | c4d28b8eb3bf936130147c3d39293e89772cab86 /plugins | |
parent | 9c0ceb7a5291950551d95d9314573c26c73e6b0e (diff) | |
download | zsh-e891fbff9e2e70acfbeff0734cd1fc012861e6ef.tar.gz zsh-e891fbff9e2e70acfbeff0734cd1fc012861e6ef.tar.bz2 zsh-e891fbff9e2e70acfbeff0734cd1fc012861e6ef.zip |
knife_ssh: small tweaks
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/knife_ssh/knife_ssh.plugin.zsh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/knife_ssh/knife_ssh.plugin.zsh b/plugins/knife_ssh/knife_ssh.plugin.zsh index 7fdd42a1e..dc425a33e 100644 --- a/plugins/knife_ssh/knife_ssh.plugin.zsh +++ b/plugins/knife_ssh/knife_ssh.plugin.zsh @@ -1,17 +1,17 @@ function knife_ssh() { - grep -q $1 ~/.knife_comp~ 2> /dev/null || rm -f ~/.knife_comp~; + grep -q $1 ~/.knife_comp~ 2> /dev/null || rm -f ~/.knife_comp~ ssh $(knife node show $1 | awk '/IP:/{print $2}') } _knife_ssh() { if hash knife 2>/dev/null; then if [[ ! -f ~/.knife_comp~ ]]; then - echo "\nGenerating ~/.knife_comp~..." >/dev/stderr + echo "\nGenerating ~/.knife_comp~..." >&2 knife node list > ~/.knife_comp~ fi - compadd $(<~/.knife_comp~) + compadd $(< ~/.knife_comp~) else - echo "Could not find knife" > /dev/stderr; + echo "Could not find knife" >&2 fi } |