Advertisement
brianMc

cHistory

Sep 23rd, 2016
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.23 KB | None | 0 0
  1. #!/bin/bash
  2. #permenantly clears terminal history
  3. #history -c only temporarily clears it
  4. #must close terminal right after this is run
  5.  
  6. clear
  7. echo "History was purged..."
  8.  
  9. cat /dev/null > ~/.bash_history && history -c && exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement