]> git.ipfire.org Git - thirdparty/bash.git/blobdiff - tests/comsub3.sub
Bash-4.4 distribution sources and documentation
[thirdparty/bash.git] / tests / comsub3.sub
diff --git a/tests/comsub3.sub b/tests/comsub3.sub
new file mode 100644 (file)
index 0000000..6947400
--- /dev/null
@@ -0,0 +1,31 @@
+x=$(
+  case 1 in
+    1) echo 1
+  esac
+  case 2 in
+    2) echo 2
+  esac
+)
+echo "$x" 
+
+x=$(case 1 in 1) echo 3;; esac; case 2 in 2) echo 4;; esac;)
+echo "$x" 
+
+x=$(case 1 in 1) echo 5;; esac; case 2 in 2) echo 6;; esac)
+echo "$x" 
+
+x=$(case 1 in 1) echo 5;; esac; case 2 in 2) echo 6;; esac; for f in a b c; do echo "$f" ; done)
+echo "$x" 
+
+x=$(
+  for f in a b c; do
+       echo $f
+  done
+  case 1 in
+    1) echo 1
+  esac
+  case 2 in
+    2) echo 2
+  esac
+)
+echo "$x"