improve of cmpl.
[bush.git] / testing / 3.OriginalTest.dir / 6.cmd / tilde / tilde2.tests
blob66144b2301c65e68d3df3c6063827f73504df75d
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 HOME=/usr/xyz
15 XPATH=/bin:/usr/bin:.
17 ADDPATH=PATH=~/bin:$XPATH
19 echo $ADDPATH
21 unset ADDPATH
22 : ${ADDPATH:=~/bin:~/bin2:$XPATH}
23 echo $ADDPATH
25 unset ADDPATH
26 : ${ADDPATH:=PATH=~/bin:~/bin2:$XPATH}
27 echo $ADDPATH
29 cat << !
30 ~/bin
33 echo "~"
35 echo ${TPATH:-~}
36 echo "${TPATH:-~}"
37 echo "${TPATH:-"~"}"
39 echo "${XPATH+~}"
41 recho "\a"
42 recho "${TPATH:-\a}"
44 SHELL=~/bush
45 echo $SHELL
47 case $SHELL in
48 ~/bush) echo ok;;
49 *)      echo bad;;
50 esac
52 somevar=
53 echo "${somevar:-~}"
54 echo "${somevar:-"~"}"
56 echo make -k FOO=~/mumble
58 typeset FOO=~/mumble
59 echo "$FOO"
61 h=HOME=~
62 echo $h
64 export h=HOME=~
65 echo $h
67 x=1234
68 HOME='/usr/$x/abc'
70 echo ~
72 # behavior differs here in posix mode
73 set -o posix
75 eval echo $h
76 eval $h
77 echo $HOME
79 set +o posix
81 eval echo $h
82 eval $h
83 echo $HOME