讓用戶知道當前所在的路徑
.bash_profile裡是這樣設置命令行提示符的:
export PS1='[\u@\h:\w]\$'
含義是[當前用戶@當前主機:當前目錄]$,$代表普通權力用戶,若是#則為Root。
例如下面這個樣子:
[root@kale:/]#
其他一些可用的開關還有:
\a - beep;
\H - full host name;
\d - date;
\s - shell name;
\t ot \T - time;
\@ - A.M. or P.M.;
\v - version of bash;
\! - command history number;