7 lines
196 B
Bash
7 lines
196 B
Bash
# /etc/bashrc
|
|
|
|
# Setting bash prompt if not in chroot
|
|
if ! [ "$(awk '$5=="/" {print $1}' </proc/1/mountinfo)" != "$(awk '$5=="/" {print $1}' </proc/$$/mountinfo)" ]; then
|
|
PS1='[\u@\h \W]\$ '
|
|
fi
|