0

我使用的是 Mac OSX 10.8 版

在 bash 提示符下,当我尝试返回一个目录时..我键入 b 并按回车键。我收到这条消息: bash: b: command not found

我怎样才能让这个命令工作?

4

2 回答 2

0

如果您想使用“b”作为返回 bash 的快捷方式:

echo "alias b='cd ..'" >> ~/.bash_profile
source ~/.bash_profile

这适用于 Mac OS X。如果您想要在 Linux 中使用相同的快捷方式,可以将 .bash_profile 文件替换为 .bashrc

于 2013-10-26T22:46:53.573 回答
0
cd ..

cd表示更改目录。你应该阅读结果man cd

于 2013-10-26T22:14:32.173 回答