aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d/aliases.bash
blob: d9ae8bd2576b3060ff7dfa52a20c8ac51afcdf3a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Use a unified format for diff by default
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'