📝 Added notes on useful bash commands and updated rg

This commit is contained in:
z3rOR0ne 2022-09-05 17:17:59 -07:00
parent ef2da5ccc9
commit a936ebba23

View file

@ -1,7 +1,7 @@
#Custom Aliases
alias .="cd && ls"
alias more="less"
alias grep="rg"
alias grep="rg -N"
alias lf="ranger"
alias ogrep='grep --colour=auto'
alias egrep='egrep --colour=auto'
@ -217,6 +217,9 @@ alias psmem="ps auxf | sort -nr -k 4 | head -5"
# get top process eating cpu
alias pscpu="ps auxf | sort -nr -k 3 | head -5"
# useful bash commands
# grep, sed, awk, tr, sort, seq, paste, uniq
# git aliases
alias git-a="git add"
alias git-c="git commit -m"