]> git.ipfire.org Git - thirdparty/bash.git/blob - tests/exp8.sub
bash-5.2 distribution sources and documentation
[thirdparty/bash.git] / tests / exp8.sub
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.
5 #
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.
10 #
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/>.
13 #
14 var=$'x\001y\177z'
15
16 recho "$var"
17 recho $var
18
19 declare -p var
20 recho $(declare -p var)
21
22 echo "var=$var" | sed -n l
23 echo "declare -- var=\"$var\"" | sed -n l
24
25 recho ${var@Q}
26 recho ${var@P}
27 echo -E ${var@A}
28
29 unset array
30 array=( [$'x\001y\177z']=foo ) # should be error
31 echo -E ${array[@]@A}
32
33 unset array
34 declare -a array=([0]=$'x\001y\177z')
35 declare -p array
36
37 unset array
38 array=( "$var" )
39 recho ${array[@]}
40 echo -E ${array[@]@A}
41
42 unset array
43 declare -A array
44 array=( [$'x\001y\177z']=$'a\242b\002c' )
45 echo -E ${array[@]@A}