Add aliases for easy searching of history

This commit is contained in:
Andrew R. M 2024-04-10 16:38:27 +00:00
parent e15f254143
commit d901efe31a

View File

@ -39,6 +39,13 @@ alias df="df -h"
# Human readable file size inspection
alias du="du -sh"
# History searches
alias hgrep='history | grep --color'
alias phgrep="cat ${PERSISTENT_HISTFILE} | grep --color"
alias hfzf='history | fzf'
alias phfzf="cat ${PERSISTENT_HISTFILE} | fzf"
#{- NETWORKING -}#