Created
May 24, 2025 18:09
-
-
Save thesuhu/1afdd80d39409b96499956e1128f70d3 to your computer and use it in GitHub Desktop.
Clear Your Bash History Securely
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Clear bash history securely | |
echo "Clearing bash history from memory..." | |
history -c | |
history -w | |
echo "Flushing data to disk..." | |
sync | |
echo "Overwriting and deleting ~/.bash_history securely..." | |
shred -vfz -n 3 -u ~/.bash_history | |
echo "Done. Bash history cleared securely." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment