mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
No cat, and hide errors for missing cache file
This commit is contained in:
parent
00ccee1f33
commit
9a9e6e9299
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
function knife_ssh() {
|
function knife_ssh() {
|
||||||
grep -q $1 ~/.knife_comp~ || 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}')
|
ssh $(knife node show $1 | awk '/IP:/{print $2}')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ _knife_ssh() {
|
||||||
echo "\nGenerating ~/.knife_comp~..." >/dev/stderr
|
echo "\nGenerating ~/.knife_comp~..." >/dev/stderr
|
||||||
knife node list > ~/.knife_comp~
|
knife node list > ~/.knife_comp~
|
||||||
fi
|
fi
|
||||||
compadd `cat ~/.knife_comp~`
|
compadd $(<~/.knife_comp~)
|
||||||
else
|
else
|
||||||
echo "Could not find knife" > /dev/stderr;
|
echo "Could not find knife" > /dev/stderr;
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue