在Fish Interactive
shell中有一种方法来显示完整的路径.目前当我导航到一个目录我得到以下shell.
millermj@Dodore ~/o/workspace
但我宁愿看到
millermj@Dodore ~/o-town/workspace
这是我的version_pwd版本,应该显示您要查找的内容:
原文链接:https://www.f2er.com/bash/386431.htmlfunction prompt_pwd --description 'Print the current working directory,NOT shortened to fit the prompt' if test "$PWD" != "$HOME" printf "%s" (echo $PWD|sed -e 's|/private||' -e "s|^$HOME|~|") else echo '~' end end
这将像往常一样显示主目录的波形符号,但删除了sed命令,当您几个目录深入时,只能从每个目录拉出第一个字母.
编辑prompt_pwd使用功能.它将允许您交互地更改功能.从命令行类型funced prompt_pwd.一旦提示显示您的喜好,请使用funcsave prompt_pwd使行为在以后的会话中持续存在.