improve of cmpl.
[bush.git] / testing / 3.OriginalTest.dir / varenv / array / array9.sub
blobc3aa31d1f10592b04345f03999d72cdf9a3623c0
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 echo $(( 0x7e ))
15 echo $(( 0x7f ))
16 echo $(( 0x80 ))
18 a=$'\x80'
19 recho "$a"
21 a=( $'\x7e' $'\x7f' $'\x80' )
23 recho "${a[@]}"
25 unset a
26 a[0]=$'\x7e'
27 a[1]=$'\x7f'
28 a[2]=$'\x80'
30 recho "${a[@]}"
32 b1=$'\x7e'
33 b2=$'\x7f'
34 b3=$'\x80'
36 unset a
37 a=( "$b1" "$b2" "$b3" )
39 recho "${a[@]}"