浏览代码

function return examples

George Jones 1 年之前
父节点
当前提交
22720f90bb
共有 1 个文件被更改,包括 6 次插入0 次删除
  1. 6 0
      home/public/snippits/bash/functions-as-subshells.sh

+ 6 - 0
home/public/snippits/bash/functions-as-subshells.sh

@@ -31,3 +31,9 @@ if retval=`f BAR`; then
 else
     echo f with an argument failed
 fi
+
+if f BAR; then
+    echo f with an argument succeeded, ignoring retval
+else
+    echo f with an argument failed
+fi