linux操作下脚本不小心误删了很多东西,变成了下面的样子
在linux shell中不显示路径了.
-bash-3.2# cd /opt
-bash-3.2# cd /opt/woot/
-bash-3.2# cd /opt/woot/yoop/
-bash-3.2#
如何改为显示路径的shell呢
步骤如下:
vi ~/.bash_profile
在最后加上
export PS1=’[\u@\h \W]\$’
然后执行
source ~/.bash_profile
这样shell就可以显示路径了
注意:以上命令建议手动输入,不要复制。
转载于:https://blog.51cto.com/chensanxin/1279097