diff options
author | William Carroll <wpcarro@gmail.com> | 2016-07-12T14·39-0400 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2016-07-12T14·39-0400 |
commit | 89578784957396e81c82f3b4ac06959a2d73dd27 (patch) | |
tree | 39fa43656238e3797d14b43466511cdd9a6df841 /.w_aliases.sh | |
parent | 06178e66dda5f84dfd9a0d0c128142382e14bbef (diff) |
Reorganizes home directory to accomodate git repo
Diffstat (limited to '.w_aliases.sh')
-rw-r--r-- | .w_aliases.sh | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.w_aliases.sh b/.w_aliases.sh new file mode 100644 index 000000000000..c427af58e9be --- /dev/null +++ b/.w_aliases.sh @@ -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' + |