11
|
1 #
|
|
2 # zshrc for quad64
|
|
3 #
|
|
4
|
|
5 . $HOME/.zsh-env/zshrc-jdk
|
|
6 . $HOME/.zsh-env/zshrc-maven
|
|
7
|
|
8 export PATH="$HOME/bin:${PATH}"
|
|
9 export PGUSER=postgres
|
|
10
|
|
11 #
|
|
12 # aliases
|
|
13 #
|
|
14 alias bzip=pbzip2
|
|
15 alias cvscheck='sh -c "cvs -n update 2>&1 | grep \?"'
|
|
16 alias cvsupdate='cvs -q -z3 update -dP | egrep -v "^\?.*\.d"'
|
|
17 alias df="df -h"
|
|
18 alias env="env | sort | $PAGER"
|
|
19 alias host=hostx
|
|
20 alias top=htop
|
|
21
|
|
22 #
|
|
23 # functions to be used directly from the command line
|
|
24 #
|
|
25 cvsrm() { rm "$@"; cvs remove "$@" }
|