Add aliases for easy searching of history

This commit is contained in:
Andrew R. M 2025-04-04 17:42:35 +00:00
parent 4bfa9995cd
commit 7b33bf13f9

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 -}#