Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. [root@server:~]# cat testing.sh
  2. #!/bin/bash
  3. echo "1"
  4. exec ./two.sh
  5. echo "3"
  6.  
  7. [root@server:~]# cat two.sh
  8. #!/bin/bash
  9. echo "2"
  10. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement