aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d/aliases.bash
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2013-07-20 00:41:19 +1200
committerTom Ryder <tom@sanctum.geek.nz>2013-07-20 00:41:19 +1200
commit0785b2be3c2b74c8965eed51838f57c8d91e3d51 (patch)
treeec35ac5d36000286d38d6e2ee5fa3e20d11b8798 /bash/bashrc.d/aliases.bash
parentRefine color choices (no 'background' defined) (diff)
downloaddotfiles-0785b2be3c2b74c8965eed51838f57c8d91e3d51.tar.gz
dotfiles-0785b2be3c2b74c8965eed51838f57c8d91e3d51.zip
Move aliases into separate file
Diffstat (limited to 'bash/bashrc.d/aliases.bash')
-rw-r--r--bash/bashrc.d/aliases.bash15
1 files changed, 15 insertions, 0 deletions
diff --git a/bash/bashrc.d/aliases.bash b/bash/bashrc.d/aliases.bash
new file mode 100644
index 00000000..7a0383a3
--- /dev/null
+++ b/bash/bashrc.d/aliases.bash
@@ -0,0 +1,15 @@
+# I always want a unified diff
+alias diff='diff -u'
+
+# I actually use ed now and then, go figure
+alias ed='ed -p:'
+
+# Make gdb shut up
+alias gdb='gdb -q'
+
+# Protect innocent MySQL databases from my stupidity
+alias mysql='mysql --safe-updates'
+
+# I always do this, and I hate slow train
+alias sl='ls'
+