很多天以來,我一直在努力掌握這一點。基本上我在 tcsh 中需要的是這個
[machine_name:current_dir]72
%
代替
[machine_name:current_dir]72 %
這樣我就可以隨時在下一行輸入我的命令。
到目前為止我嘗試了什麼?
我已經使用this和this作為更改我的 .cshrc_mine 文件的指南。但到目前為止沒有任何效果。如果有人可以幫助我,將不勝感激。
對於 tcsh,請使用以下命令:
set prompt = "[%m:%/]%h\n% "
在 Bash 中:
export PS1="[\h:\w]\!\n% "
引用自:https://unix.stackexchange.com/questions/217843