7 lines
112 B
Bash
7 lines
112 B
Bash
# /etc/bashrc
|
|
|
|
# Setting bash prompt if not in chroot
|
|
if ! [ -f /tmp/is_chroot ]; then
|
|
PS1='[\u@\h \W]\$ '
|
|
fi
|