Skip to content

Instantly share code, notes, and snippets.

@xsota
Last active August 29, 2016 03:45
Show Gist options
  • Save xsota/a18d53a863c00b4abdaf7f801775fa2a to your computer and use it in GitHub Desktop.
Save xsota/a18d53a863c00b4abdaf7f801775fa2a to your computer and use it in GitHub Desktop.
for mac
#!/bin/sh
SAVE_DIR=./screenshot
FILE_PATH=$SAVE_DIR/`date +%Y%m%d%H%M%S`.png
TMP_FILE=/sdcard/ss.pn
# capture screen image
mkdir -p $SAVE_DIR 2>/dev/null
adb shell screencap -p $TMP_FILE
adb pull $TMP_FILE $FILE_PATH
adb shell rm $TMP_FILE
# resize image
sips -Z 320 $FILE_PATH
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment