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
 else
     echo f with an argument failed
     echo f with an argument failed
 fi
 fi
+
+if f BAR; then
+    echo f with an argument succeeded, ignoring retval
+else
+    echo f with an argument failed
+fi