1234567891011121314151617181920212223 |
- #!/bin/bash
-
- ### .... ###
- ### BASH ###
- ### '''' ###
-
- make_ps1h() {
- echo "$lblack\h$normal";
- }
-
- # my tools as aliases
- alias tap="./node_modules/tap/bin/tap.js"
- alias tap-reader="./node_modules/tap/bin/tap-reader.js"
- alias diff="colordiff -u"
-
-
- ### ...... ###
- ### OTHERS ###
- ### '''''' ###
-
- export PERL5LIB="$PERL5LIB:$HOME/lib/minions/lib"
- export PERL5LIB="$PERL5LIB:$HOME/local/gnucash-importer/lib"
- export EDITOR="vim"
|