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.
伙计们,使用自动完成功能执行以下操作的更有效方法是什么?
cd ls cd bar ls cd baz ls cd basilio
从最外面的文件夹尝试ls -R,它将递归列出所有内容。
ls -R
您尚未指定在哪个 SHELL 中。在 BASH 中,您可以使用双标签来查看您的选项:
cd [TAB] [TAB] 键入前几个字母 [TAB] 完成。
在 ZSH 中实现了类似但更好的补全。