[ROSBE-UNIX] Inherit user's .bashrc file

Add an identification to terminal prompt
This commit is contained in:
Victor Perevertkin 2020-05-27 02:43:04 +03:00
parent ba1f4584e2
commit 7c82f11832
No known key found for this signature in database
GPG Key ID: C750B7222E9C7830

View File

@ -1,3 +1,11 @@
# extend user's RC file
if [ -f $HOME/.bashrc ]; then
source $HOME/.bashrc
fi
# identify us in prompt
export PS1="(RosBE) ${PS1}"
# Set aliases
alias basedir="source $_ROSBE_ROSSCRIPTDIR/basedir.sh"
alias charch="source $_ROSBE_ROSSCRIPTDIR/charch.sh"