Advertisement
Guest User

Untitled

a guest
Dec 30th, 2017
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.20 KB | None | 0 0
  1. -bash-4.4$ toto=a ; titi=b
  2. -bash-4.4$ echo $toto-$titi
  3. a-b
  4. -bash-4.4$ unset toto
  5. -bash-4.4$ echo $toto-$titi
  6. -b
  7. -bash-4.4$ unset titi
  8. -bash-4.4$ echo $toto-$titi
  9. -
  10. -bash-4.4$ #ok?
  11. -bash-4.4$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement