Advertisement
Guest User

Untitled

a guest
Nov 29th, 2015
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.08 KB | None | 0 0
  1. #!/bin/bash
  2. test1 = "A"
  3. # error
  4. echo $test1
  5.  
  6. test2="A"
  7. # dziala
  8. echo $test2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement