Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. #!/bin/bash
  2. history
  3.  
  4. #!/bin/bash
  5. set -o | grep history
  6. history
  7.  
  8. $ ./nohistory.sh
  9. history off
  10.  
  11. #!/bin/bash
  12. set -o history
  13. set -o | grep history
  14. history
  15.  
  16. $ ./history.sh
  17. history on
  18. 1 set -o | grep history
  19. 2 history
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement