osx – 鱼互动Shell完整路径

前端之家收集整理的这篇文章主要介绍了osx – 鱼互动Shell完整路径前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Fish Interactive shell中有一种方法显示完整的路径.目前当我导航到一个目录我得到以下shell.
millermj@Dodore ~/o/workspace

但我宁愿看到

millermj@Dodore ~/o-town/workspace
这是我的version_pwd版本,应该显示您要查找的内容
function 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使行为在以后的会话中持续存在.

原文链接:https://www.f2er.com/bash/386431.html

猜你在找的Bash相关文章