blob: abe137a30e1ccdd5cf18487056624db7b8e1a497 (
plain) (
blame)
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
|
# $FreeBSD: releng/12.0/bin/sh/tests/expansion/export3.0 238468 2012-07-15 10:19:43Z jilles $
w='@ @'
check() {
[ "$v" = "$w" ] || echo "Expected $w got $v"
}
command export v=$w
check
command command export v=$w
check
HOME=/known/value
check() {
[ "$v" = ~ ] || echo "Expected $HOME got $v"
}
command export v=~
check
command command export v=~
check
check() {
[ "$v" = "x:$HOME" ] || echo "Expected x:$HOME got $v"
}
command export v=x:~
check
command command export v=x:~
check
|