Created
December 7, 2016 14:12
-
-
Save stockulus/a9b24f4e986019bfac8f57e8d426c435 to your computer and use it in GitHub Desktop.
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/bash | |
mkdir -p screen | |
fileName=$(printf "./screen/%s.png" `date +%Y-%m-%d:%H:%M:%S`) | |
adb shell screencap -p /sdcard/screen.png | |
adb pull /sdcard/screen.png $fileName | |
adb shell rm /sdcard/screen.png | |
echo saved at $fileName | |
open $fileName |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment