about summary refs log blame commit diff
path: root/aliases.sh
blob: ba1b01a336e6b9742c6a4c11878ae9d5220d86d5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                           
                









                                                          


                                             



                                                     
alias ll="ls -l"

alias catn="cat -n"

alias egrep="egrep --color"

alias grep="egrep"

alias c="clear"

alias vim="nvim"

alias find="find -E"

alias dir='find . -maxdepth 1 -type d -regex "\.\/[^.].+"'

# if pygmentize isn't installed run...
# sudo pip install pygments
# colorizes syntax of files
alias ccat="pygmentize -g"

# self-evident git alias
alias gprom="git pull --rebase origin master"

# view the Unix directory stack as maintained through
#     pushd and popd commands
alias wdirs='dirs | tr " " "\n" | sort -r'