7 lines
143 B
Bash
Executable File
7 lines
143 B
Bash
Executable File
#!/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
|