--
1 2 |
echo $PS1 [\u@\h \W]\$ |
--
區分一般使用者及 root
針對此類 shell 必須將設定寫在 /etc/bashrc 內生效
1 2 3 4 5 6 7 |
# If id command returns zero, you’ve root access. if [ $(id -u) -eq 0 ]; then # you are root, set red colour prompt PS1="[\\u@\\h:\\W] # " else # normal PS1="[\\u@\\h:\\w] $ " fi |
如果加上顏色等控制碼,會造成長指令無法順利換行的 bug
--
800 total views, 1 views today