Talustus | 3019a91 | 2013-04-06 11:50:07 +0200 | [diff] [blame] | 1 | #!/bin/sh |
2 | # | ||||
3 | # helper script for capture picture on device | ||||
4 | # | ||||
5 | # Kyan He <kyan.ql.he@gmail.com> @ Tue Feb 15 12:42:48 CST 2011 | ||||
6 | # | ||||
7 | # | ||||
8 | |||||
9 | ADB_OPTIONS= | ||||
10 | PNG="/data/local/fbdump.png" | ||||
11 | |||||
12 | if [ ! "$FB2PNG" = "" ]; | ||||
13 | then | ||||
14 | |||||
15 | adb $ADB_OPTIONS push $FB2PNG /data/local | ||||
16 | adb $ADB_OPTIONS shell chmod 777 /data/local | ||||
17 | adb $ADB_OPTIONS shell /data/local/fb2png | ||||
18 | |||||
19 | adb $ADB_OPTIONS pull $PNG | ||||
20 | adb $ADB_OPTIONS shell rm $PNG | ||||
21 | else | ||||
22 | echo "define \$FB2PNG first" | ||||
23 | fi |