Files
bash/source-files/bashrc
T
2024-09-08 18:24:23 +00:00

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