Skip to content

Instantly share code, notes, and snippets.

@thesuhu
Created May 24, 2025 18:09
Show Gist options
  • Save thesuhu/1afdd80d39409b96499956e1128f70d3 to your computer and use it in GitHub Desktop.
Save thesuhu/1afdd80d39409b96499956e1128f70d3 to your computer and use it in GitHub Desktop.
Clear Your Bash History Securely
#!/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