aboutsummaryrefslogtreecommitdiff
path: root/bash
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2013-09-11 13:17:54 +1200
committerTom Ryder <tom@sanctum.geek.nz>2013-09-11 13:17:54 +1200
commite33ac1fc5369902745fd660a5cf9f06034c6e4a6 (patch)
treeff8ad25ef2faad6acc767cb3ae64cc9c4d45e890 /bash
parentNeglected to quote variable list for tmux (diff)
downloaddotfiles-e33ac1fc5369902745fd660a5cf9f06034c6e4a6.tar.gz
dotfiles-e33ac1fc5369902745fd660a5cf9f06034c6e4a6.zip
Add ''ll'' alias for ''ls -al''
Diffstat (limited to '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'