init version.
[bush.git] / tests.bak / exp7.sub
bloba3993b50132a6c685c36b3002f475f3254f99f25
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 IFS=$'\001'
15 c=$'\001'
16 c2=$'\003'
18 IFS=$c          # this is the problem line, IFS should end up being \001
19 recho "$IFS"
20 set -- $c2$c$c2$c$c2
21 recho $# "$1" "$2" "$3"
23 x=$c
24 recho "$x"
26 unset c c2 x
28 c=$'Y\1Y';
30 v=X${c}X;
31 recho X${c}X
32 recho "$v"
34 v=X$c
35 recho X$c
36 recho "$v"