在linux下,如果让当前显示的是全路径?
发布网友
发布时间:2022-04-24 02:51
我来回答
共3个回答
热心网友
时间:2022-05-01 21:46
PS1的参数设置
在fc中
默认的PS1="[\u@\h \W]\$",其中\W就是路径的设置选项,大写的W是简介模式,小写的为全路径模式,自己改改就ok了
PS1="[\u@\h \w]\$"就行了
热心网友
时间:2022-05-01 23:04
Linux下命令行显示当前全路径方法:
/etc/profile 和 ~/.bashrc 或者直接在用户的.bash_profile中添加
export PS1="[/u@/h /`pwd/`]$"
或export PS1='[\u@\h \W]\$'
热心网友
时间:2022-05-02 00:39
编辑你的~/.bashrc文件,加入一行:
export PS1="[\u@\h \`pwd\`]$"