Skip to content

Instantly share code, notes, and snippets.

@smddzcy
Created October 26, 2015 21:23
Show Gist options
  • Save smddzcy/866f8c828f90815bbdd0 to your computer and use it in GitHub Desktop.
Save smddzcy/866f8c828f90815bbdd0 to your computer and use it in GitHub Desktop.
Delete & disable logs on Linux
#!/bin/bash
#delete bash logs & disable logging on linux
export HISTFILE=/dev/null;
export HISTSIZE=0;
rm ~/.bash_history -rf;
history -c;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment