
Untitled
By: a guest on
May 19th, 2012 | syntax:
Bash | size: 0.24 KB | hits: 17 | expires: Never
[river@localhost ~]$ B="facial"
[river@localhost ~]$ A=B
[river@localhost ~]$ echo $A
B
[river@localhost ~]$ echo $B
facial
[river@localhost ~]$ unset $A
[river@localhost ~]$ echo $A
B
[river@localhost ~]$ echo $B
[river@localhost ~]$