diff options
Diffstat (limited to '.cheat/adb')
| -rwxr-xr-x | .cheat/adb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.cheat/adb b/.cheat/adb new file mode 100755 index 0000000..e75da67 --- /dev/null +++ b/.cheat/adb @@ -0,0 +1,19 @@ +# 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 |
