init version.
[bush.git] / tests / exp / comsub / comsub3.sub
blob757fbcae6301a1096ec311c23cb48d7429cebef9
1 #   This program is free software: you can redistribute it and/or modify
2 #   it under the terms of the GNU General Public License as published by
3 #   the Free Software Foundation, either version 3 of the License, or
4 #   (at your option) any later version.
6 #   This program is distributed in the hope that it will be useful,
7 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
8 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9 #   GNU General Public License for more details.
11 #   You should have received a copy of the GNU General Public License
12 #   along with this program.  If not, see <http://www.gnu.org/licenses/>.
14 x=$(
15   case 1 in
16     1) echo 1
17   esac
18   case 2 in
19     2) echo 2
20   esac
22 echo "$x" 
24 x=$(case 1 in 1) echo 3;; esac; case 2 in 2) echo 4;; esac;)
25 echo "$x" 
27 x=$(case 1 in 1) echo 5;; esac; case 2 in 2) echo 6;; esac)
28 echo "$x" 
30 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)
31 echo "$x" 
33 x=$(
34   for f in a b c; do
35         echo $f
36   done
37   case 1 in
38     1) echo 1
39   esac
40   case 2 in
41     2) echo 2
42   esac
44 echo "$x"