# ~/.bash_profile: executed by bash(1) for login shells.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.

# the default umask is set in /etc/login.defs
#umask 022

# the rest of this file is commented out.

# set variable identifying the chroot you work in
#if [ -f /etc/debian_chroot ]; then
#  debian_chroot=$(cat /etc/debian_chroot)
#fi

# include .bashrc if it exists
if [ -f ~/.bashrc ]; then
    . ~/.bashrc
fi

# path from macosx
if [ -d /103/Users/godog/bin ]; then
    PATH="${PATH}":/103/Users/godog/bin
fi

# set PATH so it includes user's private bin if it exists
if [ -d ~/bin ] ; then
    PATH=~/bin:"${PATH}"
fi

# do the same with MANPATH
if [ -d ~/man ]; then
    MANPATH=~/man:"${MANPATH}"
    export MANPATH
fi

# http://www.ukuug.org/events/linux2003/papers/bash_tips/
shopt -s histappend
shopt -s cdspell
export PROMPT_COMMAND="history -a"

export IGNOREEOF=1
export HISTSIZE=10000
export LESSOPEN="| /usr/bin/lesspipe '%s'"
export LESSCLOSE="/usr/bin/lesspipe '%s' '%s'"

export JAVA_HOME="/usr/lib/j2sdk1.4-ibm/"
# powerpc processor
export JITC_PROCESSOR_TYPE=6
export PATH=$HOME/projects/devscripts:"${PATH}":${JAVA_HOME}/bin:${JAVA_HOME}/jre/bin/

Generated with vim2html
Copyright © 2003-2004 by Chip Cuccio <http://norlug.org/~chipster/finger>