about summary refs log tree commit diff
path: root/aliases.sh
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2016-08-15T15·14-0400
committerWilliam Carroll <wpcarro@gmail.com>2016-08-15T15·14-0400
commit4563550969467223f422df1eda9c15165d24607c (patch)
treecbdf9570a5ffa0176e79eff3df63690cfa443624 /aliases.sh
parent6021ad31941203dafc2abd643a98fb549b620c6a (diff)
Trims fat and renames files
Diffstat (limited to 'aliases.sh')
-rw-r--r--aliases.sh25
1 files changed, 25 insertions, 0 deletions
diff --git a/aliases.sh b/aliases.sh
new file mode 100644
index 000000000000..c427af58e9be
--- /dev/null
+++ b/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'
+