Skip to content

Instantly share code, notes, and snippets.

@ishan-marikar
Created February 1, 2015 11:53
Show Gist options
  • Save ishan-marikar/6799e1d79791ec2e1bc2 to your computer and use it in GitHub Desktop.
Save ishan-marikar/6799e1d79791ec2e1bc2 to your computer and use it in GitHub Desktop.
Capturing screenshots on Android using ADB
@echo off
@echo [*] Waiting for device..
adb wait-for-device
@echo [*] Capturing screenshot and saving temporarily to sd-card..
adb shell screencap -p /sdcard/screen.png
@echo [*] Pulling screenshot off of sd-card..
adb pull /sdcard/screen.png
@echo [*] Removing temporary file on phone
adb shell rm /sdcard/screen.png
@echo [*] Opening screenshot..
start screen.png
pause
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment