Skip to content

Instantly share code, notes, and snippets.

@blizzrdof77
Forked from josephabrahams/histdel.sh
Created May 9, 2018 10:04
Show Gist options
  • Save blizzrdof77/588b21c022285b176f075edf8cb38a42 to your computer and use it in GitHub Desktop.
Save blizzrdof77/588b21c022285b176f075edf8cb38a42 to your computer and use it in GitHub Desktop.
Delete previous line in .bash_history
#!/bin/sh
hist=$(history | tail -1 | awk '{ print $1 }'); history -d $hist; history -d $(expr $hist - 1); unset hist
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment