Uygulamanın hata ayıklama sürümü için, adb exec-out run-as xxx.yyy.zzz cat somefile > somefile
tek bir dosyayı çıkarmak için komutu kullanmak çok uygundur . Ancak birden çok dosya için birden çok kez yapmanız gerekir. İşte dizini çıkarmak için kullandığım basit bir betik.
#!/bin/bash
P=
F=
D=
function usage()
{
echo "$(basename $0) [-f file] [-d directory] -p package"
exit 1
}
while getopts ":p:f:d:" opt
do
case $opt in
p)
P=$OPTARG
echo package is $OPTARG
;;
f)
F=$OPTARG
echo file is $OPTARG
;;
d)
D=$OPTARG
echo directory is $OPTARG
;;
\?)
echo Unknown option -$OPTARG
usage
;;
\:)
echo Required argument not found -$OPTARG
usage
;;
esac
done
[ x$P == x ] && {
echo "package can not be empty"
usage
exit 1
}
[[ x$F == x && x$D == x ]] && {
echo "file or directory can not be empty"
usage
exit 1
}
function file_type()
{
# use printf to avoid carriage return
__t=$(adb shell run-as $P "sh -c \"[ -f $1 ] && printf f || printf d\"")
echo $__t
}
function list_and_pull()
{
t=$(file_type $1)
if [ $t == d ]; then
for f in $(adb shell run-as $P ls $1)
do
# the carriage return output from adb shell should
# be removed
mkdir -p $(echo -e $1 |sed $'s/\r//')
list_and_pull $(echo -e $1/$f |sed $'s/\r//')
done
else
echo pull file $1
[ ! -e $(dirname $1) ] && mkdir -p $(dirname $1)
$(adb exec-out run-as $P cat $1 > $1)
fi
}
[ ! -z $D ] && list_and_pull $D
[ ! -z $F ] && list_and_pull $F
Umarım yardımcı olur. Bu komut dosyası, ana sayfada da mevcuttur .
Tipik kullanım
$ ./exec_out.sh -p com.example.myapplication -d databases
daha sonra uygulama veritabanları dizininizdeki tüm dosyaları, yani /data/data/com.example.myapplication/databases
geçerli dizine çıkaracaktır .