Created
July 4, 2014 05:30
-
-
Save teshi04/81e7aed71bbfd7146924 to your computer and use it in GitHub Desktop.
adbでスクリーンショットを撮るやつ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
DATE=`date '+%y%m%d%H%M%S'` | |
adb shell screencap -p /sdcard/screen-${DATE}.png | |
adb pull /sdcard/screen-${DATE}.png | |
adb shell rm /sdcard/screen-${DATE}.png |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment