在遵循 android eclipse 调试教程时,我遇到了以下命令。
cd /path/to/android/root
. build/envsetup.sh
lunch 1
make
emulator
Run Code Online (Sandbox Code Playgroud)
我的问题是前面的点是什么build/envsetup.sh意思?
我正在查看我的 .bash_profile 文件,我看到它写在 if 语句块中:
if [ -f ~/.bashrc ]; then
. ~/.bashrc
Run Code Online (Sandbox Code Playgroud)
有人可以解释第二行实际上在做什么吗?