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.
我正在尝试使用 zsh 将波浪号扩展为 $HOME 变量,并且想知道在这种情况下最佳实践是什么?
基本上我想要的是:
$ ls ~
按 TAB 时展开为
$ ls /home/myusername
哪里HOME=/home/myusername。该_tilde函数通常执行 ldap 搜索,然后是命名目录,然后是目录堆栈,我不需要这些。
HOME=/home/myusername
_tilde
实现这一目标的最佳方法是什么?