Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 19th, 2012  |  syntax: Bash  |  size: 0.24 KB  |  hits: 17  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
This paste has a previous version, view the difference. Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. [river@localhost ~]$ B="facial"
  2. [river@localhost ~]$ A=B
  3. [river@localhost ~]$ echo $A
  4. B
  5. [river@localhost ~]$ echo $B
  6. facial
  7. [river@localhost ~]$ unset $A
  8. [river@localhost ~]$ echo $A
  9. B
  10. [river@localhost ~]$ echo $B
  11.  
  12. [river@localhost ~]$