init version.
[bush.git] / tests / 5.posix / posixexp6.sub
blobb89b87f998db2d4f8efd846d04f4db4fbea727d4
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 var=$'\01\02\03\177'
16 bar=${unset:-$var}
17 recho "$bar"
18 unset -v bar
19 bar=${unset:-"$var"}
20 recho "$bar"
22 foo=${parameter:=$var}
24 recho "$foo"
25 recho "$parameter"
27 unset -v foo parameter
29 foo=${parameter:="$var"}
31 recho "$foo"
32 recho "$parameter"
34 unset -v foo parameter
36 foo="${parameter:=$var}"
38 recho "$foo"
39 recho "$parameter"
41 unset -v foo parameter
43 recho ${parameter:=a\ b}
44 unset -v parameter
46 recho ${parameter:="a b"}
47 unset -v parameter
49 v='a b'
51 recho ${parameter:=$v}
52 unset -v parameter
54 recho ${parameter:="$v"}
55 unset -v parameter
57 # unsetting IFS here
59 set "  abc  " " def  ghi " "jkl "
60 unset -v IFS var
61 var=${var-$*}/${var-$*}
62 printf '[%s]\n' "$var"
64 unset -v var
65 : ${var=$*}
66 printf '[%s]\n' "$var"
68 unset -v var
69 : ${var:=$*/$*/${var-$*}}
70 printf '[%s]\n' "$var"