浏览代码

No cat, and hide errors for missing cache file

Trae Robrock 11 年之前
父节点
当前提交
9a9e6e9299
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      plugins/knife_ssh/knife_ssh.plugin.zsh

+ 2 - 2
plugins/knife_ssh/knife_ssh.plugin.zsh

@@ -1,5 +1,5 @@
 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}')
 }
 
@@ -9,7 +9,7 @@ _knife_ssh() {
       echo "\nGenerating ~/.knife_comp~..." >/dev/stderr
       knife node list > ~/.knife_comp~
     fi
-    compadd `cat ~/.knife_comp~`
+    compadd $(<~/.knife_comp~)
   else
     echo "Could not find knife" > /dev/stderr;
   fi