Please bear with us as we work to restore functionality to dotfiles.org.
P17
/zalias
# file ~/zsh/zalias
#
#
alias la='ls -lahF --color'
alias ll='ls -lhF --color'
alias l='ls -F --color'
alias rm='rm -iv'
alias cp='cp -v'
alias mv='mv -v'
# cd und list
cdd() { cd $1 && ls -lahF --color; }
alias cd='cdd'
# other
alias df='df -h'
alias du='du -sh'
alias pi='ping -c4 www.alice-dsl.de'
alias ps='ps -A uf'
# myip
alias myip='curl -s www.wieistmeineip.de | egrep -o "[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}"'
# open textfile with leafpad
alias e='/usr/bin/leafpad'
# browser
alias icw='iceweasel'
# HTML-Editor
alias ica='iceape -edit'
# cd -
alias b='cd -'
# jobs
alias j='jobs'