# .bashrc
# 
# This file is read when the user exits the bbs program to unix
# through the sysop menu.  By having this file, the sysop 
# can set customisations such as command aliasing.  The .bash_history
# file, which logs the commands typed, also gets created automatically
# and appended to the sysop.log when the user exits.

# User specific aliases and functions

PS1="\w\\$ "
alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'
alias ls='ls -a -F --color'
alias who='who -H'
alias ps='ps -aux | more'

# This will run the /etc/bashrc (Global configuration file) which MAY not
# always be preferable.  To disable this completely, add the -noprofile
# option to the bash command in the sysm.bash executable.

# Source global definitions
if [ -f /etc/bashrc ]; then
	. /etc/bashrc
fi
