Skip to content

Instantly share code, notes, and snippets.

@Leaking
Last active July 2, 2019 03:58
Show Gist options
  • Save Leaking/b24dd7b9cfb75dd37c31030a40031a6c to your computer and use it in GitHub Desktop.
Save Leaking/b24dd7b9cfb75dd37c31030a40031a6c to your computer and use it in GitHub Desktop.
Bash script to take screenshot on android and export to for Mac Desktop
#! /bin/bash
adb shell screencap -p /sdcard/test.png
#adb pull /sdcard/test.png ~/Desktop/test.png
dir=~/Desktop/
curr=`date "+%Y-%m-%d %H:%M:%S"`
name=${dir}"screenshot"${curr}".png"
echo "${name}"
adb pull /sdcard/test.png "$name"
adb shell rm /sdcard/test.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment