From 3b0142cedcde39e4c2097ecd916a870a3ced5ec6 Mon Sep 17 00:00:00 2001 From: Vito Graffagnino Date: Tue, 8 Sep 2020 18:10:49 +0100 Subject: Added the relevent parts of the .config directory. Alss add ssh config --- .cheat/adb | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 .cheat/adb (limited to '.cheat/adb') 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 -- cgit v1.2.3