Skip to content

Latest commit

 

History

History
68 lines (52 loc) · 1.97 KB

File metadata and controls

68 lines (52 loc) · 1.97 KB

Linux 系统中 PS1 显示全路径\w模式时替换 ~ 为 /home/user 的解决方案

Linux 系统中 PS1 显示全路径\w模式时替换~/home/user的解决方案

简单方法

探索过的麻烦方法

说明

(ps: 此环境已封装至项目
https://github.com/wan230114/mytools: master/bashrc_my.sh )

  • 可以显示PS1全路径,将 “linux默认PS1的$HOME替换为~” 的操作还原为全路径
  • 可以配合conda等环境管理使用,多次切换环境不会引起改变PS1

Code: (将以下代码放入~/.bashrc

## 30黑,31红,32绿, 33黄,34蓝,35洋红,36青,37白
PS1="\[\e[1;32m\][\u@\h:\[\e[1;36m\] \t \[\e[31m\]\w]\n\[\e[32m\]$ \[\e[m\]"
rawPS1="$PS1"
fcd(){
    builtin cd $@
    PS1=`echo ${PS1}|sed 's#\\\\w#$PWD#'`
    PS1_tmp=`echo ${rawPS1}|sed 's#$PWD#\\\\w#'`
    if [ "$PS1_tmp" != "$rawPS1" ] ;then rawPS1=$PS1_tmp ; fi
}
alias cd=fcd
cd .

原理解析

PS1_processing

效果展示

[chenjun@linux: 12:49:08 /home/chenjun]
$ cat /home/chenjun/.conda_bashrc
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/home/chenjun/miniconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
    eval "$__conda_setup"
else
    if [ -f "/home/chenjun/miniconda3/etc/profile.d/conda.sh" ]; then
        . "/home/chenjun/miniconda3/etc/profile.d/conda.sh"
    else
        export PATH="/home/chenjun/miniconda3/bin:$PATH"
    fi
fi
unset __conda_setup
# <<< conda initialize <<<

[chenjun@linux: 12:49:28 /home/chenjun]
$ source /home/chenjun/.conda_bashrc;

(base) [chenjun@linux: 12:49:54 /home/chenjun]
$ conda activate bio

(bio) [chenjun@linux: 12:49:54 /home/chenjun]
$ cd software

(bio) [chenjun@linux: 12:54:07 /home/chenjun/software]
$