aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d/aliases.bash
diff options
context:
space:
mode:
Diffstat (limited to 'bash/bashrc.d/aliases.bash')
-rw-r--r--bash/bashrc.d/aliases.bash3
1 files changed, 3 insertions, 0 deletions
diff --git a/bash/bashrc.d/aliases.bash b/bash/bashrc.d/aliases.bash
index 31296b7c..d9ae8bd2 100644
--- a/bash/bashrc.d/aliases.bash
+++ b/bash/bashrc.d/aliases.bash
@@ -4,6 +4,9 @@ alias diff='diff -u'
# Don't print the GDB copyright message on every invocation
alias gdb='gdb -q'
+# Quick way to get ls -al, since I do that a lot
+alias ll='ls -al'
+
# Refuse to do highly destructive things in the MySQL client; prevents me from
# updating or deleting rows without a WHERE clause, among other things
alias mysql='mysql --safe-updates'