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