# .bashrc
trap "" 2 3 5 9 11
# User specific aliases and functions
export LESSSECURE=1
# Source global definitions
if [ -f /etc/bashrc ]; then
	. /etc/bashrc
fi
if [ -f $HOME/.mysshrc ]
then
	X=`ps --noheaders -f -p $PPID | grep "/usr/sbin/sshd" 2>/dev/null`
	if [ $? -eq 0 ]
	then
	    . $HOME/.mysshrc
	fi
fi
trap 2 3 5 9 11
