我正在尝试配置PS1
以显示当前时间,这是我的当前变量
me@host:~/Downloads$ env | grep -i 'ps1'
PS1=\[\e]0;\u@\h: \w\a\]${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$
计划的结果是
me@host; 09:00 AM: ~/Downloads$
\ T以12小时格式扩展为当前时间,
临时配置
me@host:~/Downloads$ export PS1="\[\e]0;\u@\h;\T: \w\a\]${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$"
不幸的是,提示没有改变。
我的用法有什么问题?
答案 0 :(得分:1)
debian_chroot
部分尝试类似的东西:
PS1='\[\e]0;\u@\h;\T: \w\a\]${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\];\T:\[\033[01;34m\]\w\[\033[00m\]\$ '