X-Git-Url: http://git.iain.cx/?p=profile.git;a=blobdiff_plain;f=.bash_profile;h=b8e11d4ec7146117735841abf67473f88186c7bb;hp=bffd784a72a091b3090299f9748e931b3cf4a0b1;hb=996703df922a6431a9d621a395605f0f31329b5d;hpb=7ff1edff9e3b22a1fd1f7798a634538d7ed94c54 diff --git a/.bash_profile b/.bash_profile old mode 100755 new mode 100644 index bffd784..b8e11d4 --- a/.bash_profile +++ b/.bash_profile @@ -1,51 +1,24 @@ -for i in ~/.profile.d/*.bashrc; do . $i; done -__ps1 +if $(tty -s) || [ "${0:0:1}" = "-" ]; then + # Remember if nocaseglob was on. + shopt -q nocaseglob + nocg=$? + # Turn it off so we source stuff in the right order. + shopt -u nocaseglob -unset XMODIFIERS #:-( -export SSHTERM="urxvt" -export SSHTERM_TITLE="-title" -export SSHTERM_EXEC="-e" + # Remember LC_ALL. + lc_all=$LC_ALL + # Turn it off to set case-sensitive matching + LC_ALL=C -if [ "$OSTYPE" = "cygwin" ]; then - shopt -s nocaseglob -fi - -#[ "$TERM" = "xterm-color" ] && export TERM=xterm-xfree86 -export PATH=~/bin:"$PATH" + # Source all scripts. + for i in ~/.profile.d/*.bashrc; do . "$i"; done; unset i -function upload() { - if [ $# = 0 ]; then - echo usage: upload file [file...] - return 100 - fi - pwd=$PWD/ - pwd=${pwd##/home/iain/www/} - if echo $pwd | grep -q ^/; then - echo not rooted under /home/iain/www - unset pwd - return 111 - fi -# scp ${1+"$@"} 64.176.170.109:/home/iain/$pwd - lftp -c "open web1.viagold.net; cd $pwd; mput $@" - unset pwd -} + # Maybe turn nocaseglob back on. + [ $nocg = 0 ] && shopt -s nocaseglob -function download() { - if [ $# = 0 ]; then - echo usage: download file [file...] - return 100 - fi - pwd=$PWD/ - pwd=${pwd##/home/iain/www/} - if echo $pwd | grep -q ^/; then - echo not rooted under /home/iain/www - unset pwd - return 111 - fi -# scp ${1+"$@"} 64.176.170.109:/home/iain/$pwd - lftp -c "open web1.viagold.net; cd $pwd; mget $@" - unset pwd -} -alias debug='valgrind --leak-check=yes --show-reachable=yes --num-callers=5 --verbose' + # Reset LC_ALL. + LC_ALL=$lc_all -eval `dircolors -b` + unset lc_all nocg + __ps1 +fi