Skip to content

Instantly share code, notes, and snippets.

@fbatschi
Last active August 9, 2016 12:41
Show Gist options
  • Save fbatschi/7cdc26805e274d48b4e1 to your computer and use it in GitHub Desktop.
Save fbatschi/7cdc26805e274d48b4e1 to your computer and use it in GitHub Desktop.
Directly grab a Screenshot from an Android device via adb
#!/bin/bash
FILE=$1
if [ -z $FILE ]; then
FILE=screen.png
fi
adb shell screencap -p | sed 's/\r$//' > ${FILE}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment