aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d/aliases.bash
blob: 31296b7c3d0e0df2ad2ed0486fd66413e199513f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# 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'

# 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'