How to Understand Basic List of ADB Commands

From wizarPOS
Revision as of 01:51, 20 May 2020 by Mahong (talk | contribs) (Created page with "* adb devices List of devices attached * adb install ''path_to_apk'' * adb pull ''remote'' ''local'' To copy a file or directory and its sub-directories from the POS terminal....")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
  • adb devices

List of devices attached

  • adb install path_to_apk
  • adb pull remote local

To copy a file or directory and its sub-directories from the POS terminal.

remote: paths to the target files/directory on POS terminal

local: paths to the target files/directory on PC

For example:

 adb pull sdcard/wpmonitor/logcat/ ./
 copy files from sdcard/wpmonitor/logcat/ on POS termial to current folder of PC
  • adb push local remote

To copy a file or directory and its sub-directories to the POS terminal.

remote: paths to the target files/directory on POS terminal

local: paths to the target files/directory on PC