Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. 1. writing the shell
  2.  
  3. test.sh
  4. ```
  5. #!/bin/bash
  6. echo Hello World
  7. ```
  8. 2. execute
  9.  
  10.  
  11. ```
  12. sh test.sh
  13. ```
  14.  
  15. or
  16. ```
  17. chmod a+x test.sh
  18. ./test.sh
  19.  
  20. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement