使用adb:command

时间:2016-07-22 07:35:19

标签: android macos adb genymotion

我已安装Genymotion,我想用adb reboot重新启动它。但是,当我尝试......好吧,看看:

MacBook-Pro:tools Dean$ pwd
/Applications/Genymotion.app/Contents/MacOS/tools
MacBook-Pro:tools Dean$ ls -la
total 9672
drwxr-xr-x@ 5 Dean  admin      170 Jun 13 11:36 .
drwxr-xr-x@ 9 Dean  admin      306 Jun 13 11:36 ..
-rwxr-xr-x@ 1 Dean  admin  1595024 Jun 13 11:36 aapt
-rwxr-xr-x@ 1 Dean  admin  2804800 Jun 13 11:36 adb
-rwxr-xr-x@ 1 Dean  admin   544896 Jun 13 11:36 glewinfo
MacBook-Pro:tools Dean$ adb reboot
-bash: adb: command not found

任何人都知道为什么会这样吗?谢谢!

1 个答案:

答案 0 :(得分:4)

可能adb二进制文件不在您的PATH中。 PATH环境变量是一个以冒号分隔的目录列表,当您输入命令时,shell会搜索这些目录。 Bash在PATH中查找adb而不是当前目录。所以尝试下面的命令

./adb reboot