Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux系統常見問題解答 >> 修改linux下命令提示行路徑長度

修改linux下命令提示行路徑長度

日期:2017/1/20 17:38:36      編輯:Linux系統常見問題解答

默認的路徑提示為完整的路徑,這樣一行就很長了,可能會占全部的寬度,看著很不爽!就像下面這樣

jack@ubuntu:~/trunk-new/build_dir/target-mips_34kc_uClibc-0.9.33.2/linux-ar71xx_generic/linux-3.10.17/net/netfilter/commercials$
基本占用終端80%的寬度,如果能改成只顯示最後一個文件夾的名字就好了!

修改方法:

vim ~/.bashrc

搜索PS1

56 if [ "$color_prompt" = yes ]; then
 57     PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\W\[\033[00m\]\$ '
 58 else
 59     PS1='${debian_chroot:+($debian_chroot)}\u@\h:\W\$ '
 60 fi

找到上面的文本,注意看PS1的環境變量的值,\u是當前用戶,\h是主機名,\w是顯示完整路徑,\W是顯示簡單路徑,把w變成W就可以了!

至於是if還是else生效,可以都試試,我的是else生效的。

修改後執行命令

$ source ~/.bashrc   
就可以應用了!如下結果
jack@ubuntu:commercials$ 
是不是很簡潔。。。
Copyright © Windows教程網 All Rights Reserved