#!/bin/bash
#

# file: $isip/login/shell_bash_profile.sh
# version: $Id: shell_bash_profile.sh,v 1.2 2015/09/19 19:25:36 picone Exp $
#
# this is the standard .bash_profile file.
# a user's account should create a link in their home directory to this file.
#

# execute the bashrc
#
. $HOME/.bashrc

# turn off ctrl-d
#
IGNOREEOF=1;
export IGNOREEOF;

#
# end of file
