Help ADB Command

SunMad30

Well-Known Member
Hi All,
Is it adb device or adb list devices? Thanks. ;)
 

scary alien

not really so scary
Great, thank you. Shell by itself is not a command, right? It has to be accompanied by other words, right?

Type "adb" to see all of the command syntax, options, etc.

When you type "adb shell" that tells adb (client) on your PC to ask the adb daemon on your Android device to present a shell prompt to you. Typing "adb shell" presents and interactive shell and typing "adb shell <shell-command>" sends the specified command to the shell and then quits (presenting you with the output first, of course).
 

SunMad30

Well-Known Member
Thread starter
Type "adb" to see all of the command syntax, options, etc.

When you type "adb shell" that tells adb (client) on your PC to ask the adb daemon on your Android device to present a shell prompt to you. Typing "adb shell" presents and interactive shell and typing "adb shell <shell-command>" sends the specified command to the shell and then quits (presenting you with the output first, of course).
Thanks a lot! :D
 
Top