]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - tools/regression/bin/sh/expansion/export3.0
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / tools / regression / bin / sh / expansion / export3.0
1 # $FreeBSD$
2
3 w='@ @'
4 check() {
5         [ "$v" = "$w" ] || echo "Expected $w got $v"
6 }
7
8 command export v=$w
9 check
10 command command export v=$w
11 check
12
13 HOME=/known/value
14 check() {
15         [ "$v" = ~ ] || echo "Expected $HOME got $v"
16 }
17
18 command export v=~
19 check
20 command command export v=~
21 check
22
23 check() {
24         [ "$v" = "x:$HOME" ] || echo "Expected x:$HOME got $v"
25 }
26
27 command export v=x:~
28 check
29 command command export v=x:~
30 check