Advertisement
Guest User

Untitled

a guest
Sep 28th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. #!/bin/bash -x
  2. echo "Hello world!" >> logfile
  3. echo "Second command!" >> logfile
  4.  
  5. + echo 'Hello world!'
  6. Hello world!
  7. + echo "Second command!"
  8. Second command!
  9.  
  10. echo "select 1 from dual" | mysql -v --table --user=u --password=p --host=h
  11.  
  12. --------------
  13. select 1 from dual
  14. --------------
  15.  
  16. +---+
  17. | 1 |
  18. +---+
  19. | 1 |
  20. +---+
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement