Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在 konsole 中显示命令执行的时间?类似于:user@pc:~$ ls 13:05
user@pc:~$ cd 文件夹/ 13:06
用户@pc:~$ cd .. 13:07
您需要更改提示以包含时间戳。这将取决于您使用的 shell(可能是 bash),而不是终端仿真器(konsole)。假设您使用的是 bash,请更改您的 $PS1 环境变量以包含打印时间的命令的输出,例如date:
date
$ PS1="$PS1: $(date -R) >"
以此为起点,设计一个你喜欢的提示。 man date查看打印日期/时间的不同方式。
man date
在找到可以满足您需求的命令后,将其添加到您的 ~/.bashrc 文件中以使其永久化。