Search code examples
javaandroideclipseadb

Android : adb shell, no command adb found


I am simply trying to run the adb shell so I can kill a process for testing purposes. I am in the directory platform-tools and the adb executable is in there. When I try to run the shell it says adb command not found. I am running eclipse (through Ubuntu) and using an emulator. Not sure whats going on. Thanks a lot.


Solution

  • Run it like that ./adb shell (note the ./)

    By default, local folder is not in the path.