File: tilde-tests

package info (click to toggle)
bash 2.05a-11
  • links: PTS
  • area: main
  • in suites: woody
  • size: 9,804 kB
  • ctags: 6,165
  • sloc: ansic: 67,305; sh: 10,832; perl: 4,105; yacc: 3,166; makefile: 3,075; asm: 48; awk: 23
file content (66 lines) | stat: -rw-r--r-- 1,163 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# this is needed because posix mode restricts tilde expansion to assignment
# statements preceding a command, instead of the default of expanding all
# assignment statements on the line (e.g., after `export').  Without this,
# the next-to-last test fails
set +o posix

HOME=/usr/xyz
SHELL=~/bash
echo ~ch\et
echo ~/"foo"
echo "~chet"/"foo"
echo \~chet/"foo"
echo \~chet/bar
echo ~\chet/bar
echo ~chet""/bar
echo ":~chet/"
echo abcd~chet
echo "SHELL=~/bash"
echo $SHELL
echo abcd:~chet
path=/usr/ucb:/bin:~/bin:~/tmp/bin:/usr/bin
echo $path

cd /usr
cd /tmp
echo ~-
echo ~+

XPATH=/bin:/usr/bin:.

# yes tilde expansion
PPATH=$XPATH:~/bin
echo "$PPATH"

# no tilde expansion
PPATH="$XPATH:~/bin"
echo "$PPATH"

# yes tilde expansion
export PPATH=$XPATH:~/bin
echo "$PPATH"
declare -x PPATH=$XPATH:~/bin
echo "$PPATH"

# no tilde expansion
export PPATH="$XPATH:~/bin"
echo "$PPATH"
declare -x PPATH="$XPATH:~/bin"
echo "$PPATH"

# more tests of tilde expansion when executing case commands
case ~ in
$HOME)	echo ok 1;;
*) echo bad 1 ;;
esac

case ~ in
~)	echo ok 2 ;;
\~)	echo bad 2a ;;
*)	echo bad 2b ;;
esac

case $unset in
"")	echo ok 3 ;;
*)	echo bad 3 ;;
esac