The .bash_login configuration file is placed in the user's home directory to setup the environment for the bash shell. The following example is calling the .bashrc file to do all the configuration.
#.bash_login
	export MINICOM="-c on"
	export HOSTNAME=`hostname`
	export EDITOR="pico"
	#export NNTPSERVER="news.spcsys.com"
	#export NAME="Administrator"
	#export REPLYTO="admin@spcsys.com"
	#export ORGANIZATION="Specialized Systems, Inc."
	export HISTCONTROL=ignoredups
	export TTY=`tty`
	export LYNX_CFG=/usr/lib/lynx/lynx.cfg
	export ignoreeof=10
	export PS1="\$PWD$ "
	alias pico="pico -w"
	alias cls="clear"
	alias ls="ls -CF --color"
	alias la="ls -al"
	alias md="mkdir"
	alias rd="rmdir"
	alias pg="more"