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.
我使用的是 Mac OSX 10.8 版
在 bash 提示符下,当我尝试返回一个目录时..我键入 b 并按回车键。我收到这条消息: bash: b: command not found
我怎样才能让这个命令工作?
如果您想使用“b”作为返回 bash 的快捷方式:
echo "alias b='cd ..'" >> ~/.bash_profile source ~/.bash_profile
这适用于 Mac OS X。如果您想要在 Linux 中使用相同的快捷方式,可以将 .bash_profile 文件替换为 .bashrc
cd ..
cd表示更改目录。你应该阅读结果man cd
cd
man cd