Reorganizes home directory to accomodate git repo

This commit is contained in:
William Carroll 2016-07-12 10:39:02 -04:00
parent 06178e66dd
commit 8957878495
4 changed files with 62 additions and 58 deletions

25
.w_aliases.sh Normal file
View file

@ -0,0 +1,25 @@
alias ll="ls -l"
alias catn="cat -n"
alias egrep="egrep --color"
alias grep="egrep"
alias c="clear"
alias vi="vim"
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"
# view the Unix directory stack as maintained through
# pushd and popd commands
alias wdirs='dirs | tr " " "\n" | sort -r'