init version.
[bush.git] / tests / quote / nquote / nquote5.tests
blobca0308d781475503cc4c9ea237dd14875e2af9d8
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 a=$'ab\001cd\001ef'
15 IFS=$'\001'
17 recho $a
18 recho ${a}
19 recho xx${a}yy
20 recho "$a"
22 recho $(echo $a)
23 recho $(echo "$a")
25 recho ${a%%??}
26 recho "${a%%??}"
28 recho ${a/f/}
29 recho "${a/f/}"
31 a1=("$a")
32 recho ${a1[0]}
33 recho ${a1}
35 recho ${a:2:2}
37 set -- $a
38 recho $1 -- $2 -- $3
40 set -- "$a"
41 recho $1
42 recho ${1}
44 echo "$a" | { IFS=$'\001' read x y z; recho $x -- $y -- $z ; }
45 unset x y z
46 b=$'uv\177wx\177yz'
48 recho $b
50 recho "ab${x}y${a}z"
51 recho ab${x}y${a}z
53 recho "ab${b}y${a}z"
54 recho ab${b}y${a}z
56 echo "ab${b}y${a}z" | { IFS=$'\001' read l m n o  ; recho $l -- $m -- $n -- $o; }
57 unset l m n o
59 a=$'ab\001cd\001ef'
60 b=$'uv\177wx\177yz'
62 IFS=$'\177'
64 recho $a
65 recho $b
67 recho "ab${x}y${b}z"
68 recho ab${x}y${b}z
70 recho "ab${b}y${a}z"
71 recho ab${b}y${a}z
73 echo "ab${b}y${a}z" | { IFS=$'\001' read l m n o  ; recho "$l" -- "$m" -- "$n" -- "$o"; }
74 unset l m n o
75 echo "ab${b}y${a}z" | { IFS=$'\177' read l m n o  ; recho "$l" -- "$m" -- "$n" -- "$o"; }
76 unset l m n o