1234567891011121314151617181920212223242526 |
- #!/bin/bash
-
- ### .... ###
- ### BASH ###
- ### '''' ###
-
- make_ps1h() {
- echo "$cyan\h$normal";
- }
-
- # my tools as aliases
- alias mkexec="$HOME/lib/minions/bin/mkexec.pl"
- alias opera-lennycz="opera -pd $HOME/.opera-lennycz"
- alias winpdb="$HOME/local/winpdb/winpdb"
-
- alias diff="colordiff -u"
- alias gnucash="LANG=cs_CZ.utf8 gnucash"
-
- ### ...... ###
- ### OTHERS ###
- ### '''''' ###
-
- export PERL5LIB="$PERL5LIB:$HOME/lib/minions/lib"
-
- export current_project=mobile-issues
|