From 492d1030301c0b8ee5f869bcb8bf2ea26d138bda Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Wed, 27 Aug 2008 17:07:15 +0200 Subject: reorganized default aliases --- etc/alias/default | 70 ++++++++++++++++++++++++++++++++----------------------- 1 file changed, 41 insertions(+), 29 deletions(-) (limited to 'etc/alias/default') diff --git a/etc/alias/default b/etc/alias/default index 830216d..6d69628 100644 --- a/etc/alias/default +++ b/etc/alias/default @@ -1,59 +1,71 @@ +## vim:ft=zsh ## Some useful default options ## To evade them, use '=foo' instead of 'foo' -## vim:ft=zsh -alias cal='cal -m' -alias cp='cp -i' +# +# grep +# + +linux: alias egrep='grep -E --color=auto' +linux: alias fgrep='grep -F --color=auto' +linux: alias grep='grep --color=auto' + + +# +# file and filesystem information +# -# --human-readable --local +# human-readable sizes, local filesystems only alias df='df -hl' linux: alias df='df -hl --exclude-type=fuse.encfs' -# --summarize --human-readable --dereference-args +# human-readable sizes, summarize, dereference args non-linux: alias du='du -shH' linux: alias du='du -shD' -alias fbi='fbi -readahead' -alias feh='feh --quiet' +# human-readable sizes, mark executables with '*' etc. +alias ls='ls -Fh' +linux: alias ls='ls -Fh --color=auto' -linux: alias fgrep='grep -F --color=auto' -# find does globbing itself -alias find='noglob find' +# +# networking +# -linux: alias grep='grep --color=auto' +# I often use it for just *viewing* things, which works fine without root +alias ifconfig='/sbin/ifconfig' alias host='host -a' +alias mx='mx -aZ' -# I often use it for just *viewing* things, which works fine without root -alias ifconfig='/sbin/ifconfig' +# Only TCP/TCP6, not sockets and such +alias netstat='sudo netstat -atp tcp' +linux: alias netstat='sudo netstat --program --all --tcp --extend' + + +# +# various other stuff +# + +alias cal='cal -m' +alias cp='cp -i' +alias fbi='fbi -readahead' +alias feh='feh --quiet' + +# find does globbing itself +alias find='noglob find' # This is an export, so that also man() and other apps using less as pager get it # clear-screen = much faster scrolling on ttys # RAW-CONTROL-CHARS = Don't produce crap if the file contains ANSI color sequences export LESS='--silent --no-init --clear-screen --RAW-CONTROL-CHARS --quit-if-one-screen --ignore-case --tabs=5' -# --classify --human-readable -# classify = "/" after dirs, "*" after executables etc -alias ls='ls -Fh' -linux: alias ls='ls -Fh --color=auto' - -# Somehow folllowing the 'learn something new every day' ;-) +# Show manuals in all sections alias man='man -a' -# Useful on sshfs or similar -# FIXME: this sucks for streams -#alias mplayer='mplayer -cache 6000 -cache-min 50' - alias mv='mv -i' -alias mx='mx -aZ' - -# Only TCP/TCP6, not sockets and such -alias netstat='sudo netstat -atp tcp' -linux: alias netstat='sudo netstat --program --all --tcp --extend' - # BSD style alias ps='ps aux' -- cgit v1.2.3