Explorar o código

function return examples

George Jones hai 1 ano
pai
achega
22720f90bb
Modificáronse 1 ficheiros con 6 adicións e 0 borrados
  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