#!/bin/bash# Source all your custom files[ -f /etc/bashrc ] && . /etc/bashrc[ -f /etc/bash.bash_aliases ] && . /etc/bash.bash_aliases[ -f ~/bash.bash_aliases ] && . ~/bash.bash_aliasesPATH=$PATH:$HOME/bin:$HOME/android-sdk/tools:$HOME/local/eclipse:$HOME/.gem/ruby/1.8export CDPATH=./:~/:~/rpmbuildexport PATH# Don't make useless coredump files. If you want a coredump,# say "ulimit -c unlimited" and then cause a segmentation fault.ulimit -c 0# check the window size after each command andshopt -s checkwinsize# allow wildcards like: Music/**/*mp3shopt -s globstar# giving a directory only, the shell assumes cdshopt -s autocd#complete hostnme, @ will be completedshopt -s hostcomplete# History behavior and custom configsexport EDITOR=/usr/bin/nanoshopt -s histappendexport HISTFILESIZE=20000export HISTCONTROL=ignoredupsexport HISTSIZE=30000export HISTTIMEFORMAT="%F %T "