让用户知道当前所在的路径
.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;