84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
我在實驗樓看到terminal的右方有時間顯示如下,請問是怎样做到.
似乎不是設定$PS1的.
拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...
Bash的
if [[ "$SHELL" == "/bin/bash" ]]; then # export PS1="\u@\H \l \w\n" export PS1="\[\033[38;5;11m\]\u\[$(tput sgr0)\]\[\033[38;5;15m\]@\h:\[$(tput sgr0)\]\[\033[38;5;6m\][\w]\[$(tput sgr0)\]\[\033[38;5;15m\] \[$(tput sgr0)\]\[\033[38;5;2m\]\@\[$(tput sgr0)\]\[\033[38;5;15m\]\n\[$(tput sgr0)\]" fi
看了下实验楼的终端。。。使用的是zsh。prompt解析方式和bash不太一样。
如果是使用zsh,你可以修改~/.zshrc里面的主题配置。把
~/.zshrc
ZSH_THEME="candy"
修改为自己喜欢的theme即可,有不少theme都带时间显示。内置的zsh主题可以参考这里。
Bash的
看了下实验楼的终端。。。使用的是zsh。prompt解析方式和bash不太一样。
如果是使用zsh,你可以修改
~/.zshrc
里面的主题配置。把修改为自己喜欢的theme即可,有不少theme都带时间显示。内置的zsh主题可以参考这里。