# initialization file for bash "interactive shell": # ~/.bashrc # Author: Roumen Petrov # Placed in the Public Domain. # # Note bash "login shell" initialization file # ~/.bash_profile or ~/.bash_login should # process this file! # # process global bash "interactive" settings test -r /etc/bashrc && . /etc/bashrc if test -n "$PS1"; then # when bash executing interactively. : # put your specific settings for bash shell here: # end of specific bash settings. fi