]> gitweb.michael.orlitzky.com - bash.d.git/blob - aliases.sh
sage.sh: use palp from the system
[bash.d.git] / aliases.sh
1 #
2 # aliases
3 #
4 alias df='df --human-readable'
5 alias du='du --human-readable --summarize --total *'
6
7 if [ "${TERM#eterm}" = "${TERM}" ]; then
8 # We set EDITOR, VISUAL, and the "emacs" alias to the no-window
9 # version because it's so much faster than gtk emacs. (Note: the
10 # environment variables are currently set using "eselect" in
11 # Gentoo.) The exception for "eterm" that we've made here is to
12 # avoid launching emacs-nw within emacs-nw itself; in multi-term,
13 # for example, where $TERM is "eterm-color".
14 alias emacs='emacs --no-window-system'
15 fi
16
17 alias ls='ls -l --color=auto --human-readable --time-style=long-iso'
18 alias youtube-dl-mp3='youtube-dl --extract-audio --audio-format=mp3'
19