0

我是 mac 新手,我一直在尝试建立一个 Android 构建环境。根据 android 开发者网站,我在~/位置创建了bashrc_profile文件,因为它不存在。在文件中输入此代码。

function mountAndroid { hdiutil attach ~/android.dmg -mountpoint /Volumes/android; }

在下一步中,它被告知我可以执行 mountAndroid。我该怎么做呢 ?我从哪里调用这个函数或执行它?

4

2 回答 2

0

好吧..我只需要重新启动机器,我就可以在命令提示符本身中运行该功能。就是这样。

于 2012-05-11T19:02:43.840 回答
0

只需mountAndroid从内部调用bash_profile以执行 hdiutil attach 命令,android 将被挂载到/Volumes. 这将安装在您打开的每个新终端上。例子:

function mountAndroid { hdiutil attach ~/android.dmg -mountpoint /Volumes/android; }
mountAndroid
于 2014-12-20T15:03:34.597 回答