標籤:centos 命令列
今天一不小心打了home目錄刪除命令,雖然最後因為種種原因沒有刪掉,但是home目錄下很多檔案和目錄都被刪了,而且命令列也不顯示目前使用者和路徑了。
下面對其重新設定,需要設定兩個檔案:~/.bashrc和~/.bash_profile
1. bashrc在目前的目錄下建立.bashrc檔案:# touch ~/.bashrc# vim ~/.bashrc
並輸入以下資料
# .bashrc
# Source global definitionsif [ -f /etc/bashrc ]; then . /etc/bashrcfi# User specific aliases and functions
source以下使得其生效:# source ~/.bashrc
2. bash_profile在目前的目錄下建立.bash_profile檔案:# touch ~/.bash_profile# vim ~/.bash_profile
並輸入以下資料# .bash_profile# Get the aliases and functionsif [ -f ~/.bashrc ]; then . ~/.bashrcfi
source以下使得其生效:# source ~/.bash_profile
可以看到已經能成功顯示目前使用者和路徑了。
===========華麗麗的分割線============如果你存在這兩個目錄,但還是顯示-bash-4.1#,可以參考以下方案(該方案摘自網上,為進行驗證)
步驟如下:
vim ~/.bash_profile(不用管.bash_profile這個檔案有幾個,自己建立一個也是可以的)
在最後加上export PS1=‘[\[email protected]\h \W]\$‘
然後執行source ~/.bash_profile
這樣shell就可以顯示路徑了。
centos shell命令列只顯示-bash-4.1#不顯示使用者和路徑解決方案