local$ sudo su
local#
local# pkg_add bash
local# chsh -s /usr/local/bin/bash
local# exit
local$
Ouvrir :
~/.bashrc
Ajouter :
export PS1="[\u@\h \W]"
Ouvrir :
~/.profile
Ajouter à la fin :
if [ -s ~/.bashrc ]; then
source ~/.bashrc;
fi
local$ bash
[util01@local ~]