# show a list of devices adb devices #display realtime log of your device adb logcat -v long > logcat.txt #install app adb install /path/to/apk/file # get directory listing adb shell 'ls /sdcard/directory' # pulling adb pull /path/to/be/pulled/from /path/to/be/pulled/to # pushing adb push /path/to/be/pushed/from /path/to/be/pushed/to