Want something better than editing the .bash_history file?
(Especially when you use cssh, parallel-ssh, psonsole or similar)
Below are some options:
#erase last command (least efficient)
history -d $(history | tail -n 2 | head -n 1 | awk '{print $1}')
#erase last command (more efficient)
history -d $(history | awk 'END{print $1-1}')
#erase last command and self (best)
history -d $(($HISTCMD-2)) && history -d $(($HISTCMD-1))
#ultimately add alias to .bashrc
alias eraselastcmd='history -d $(($HISTCMD-2)) && history -d $(($HISTCMD-1))'
#clear current session history
history -r
#don't save session history starting now
unset HISTFILE
#delete lines containing SOMETEXT from ~/.bash_history
sed -i '/SOMETEXT/d' ~/.bash_history
Related options that can be set in ~/.bashrcexport HISTCONTROL=ignoreboth # ignore duplicates and commands with " " (space-prefixed)
export HISTSIZE= # unlimited history
export HISTFILESIZE= # unlimited history
shopt -s histappend # append to history, don't overwrite it
export HISTIGNORE="ls:pwd:exit:date" # do not record specified commands
- good luck
Please consider crypto tipping:
No comments:
Post a Comment
Comments, Suggestions or "Thank you's" Invited! If you have used this info in any way, please comment below and link/link-back to your project (if applicable). Please Share.
I accept Bitcoin tips of ANY amount to: 1GS3XWJCTWU7fnM4vfzerrVAxmnMFnhysL
I accept Litecoin tips of ANY amount to: LTBvVxRdv2Lz9T41UzqNrAVVNw4wz3kKYk