# .bashrc
# echo .bashrc
#####################
# Bash initialization
#
# LOGIN:
# /etc/profile
# /etc/profile.env (if exists)
# /etc/bash/bashrc (if exists)
# /etc/profile.d/*.sh (if exists)
#
# ~/.bash_profile
# /etc/bashrc
# ~/.bashrc (if exists)
# if( ~/.bash_profile doesn't exist)
# ~/.bash_login
# if( ~/.bash_profile doesn't exist)
# ~/.bash_login
#
# NON-LOGIN
# /etc/bash/bashrc
# ~/.bashrc
######################
# $PATH
PATH=$PATH:/usr/games/bin:/usr/local/azureus
export PATH
########################################
# Aliases
# See: /etc/profile.d/aliases.sh
#######################################
# Functions
function calc () {
gawk -v CONVFMT="%12.2f" -v OFMT="%.9g" "BEGIN { print $* ; }"
}
######################################
# Personal
#personal aliases removed
######################################
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
#if [ -f /etc/profile ]; then
# . /etc/profile
#fi