7 lines
143 B
Bash
7 lines
143 B
Bash
|
#!/bin/bash
|
||
|
# /etc/profile.d/prompt_env.sh for Production
|
||
|
|
||
|
if [[ $- == *i* ]]; then
|
||
|
export PS1="\[\e[1;31m\][prod] \u@\h:\w\\$ \[\e[0m\]"
|
||
|
fi
|