tvl-depot/aliases.sh
2017-02-13 11:21:23 -05:00

30 lines
689 B
Bash

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"
alias 'glp'="git log --graph --pretty=format:'%Cred%h%Creset -%Cblue %an %Creset - %C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative"
# view the Unix directory stack as maintained through
# pushd and popd commands
alias wdirs='dirs | tr " " "\n" | sort -r'