3 Star 0 Fork 2

Gitee 极速下载/NowView

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/XunMengWinter/Now
克隆/下载
extract_realm_database_android.sh 549 Bytes
一键复制 编辑 原始数据 按行查看 历史
Winter 提交于 2018-06-16 15:31 +08:00 . export realm file
#!/bin/bash
ADB_PATH="/Users/ice/Library/Android/sdk/platform-tools"
PACKAGE_NAME="top.wefor.nowview.test"
DB_NAME="now_test.realm"
DESTINATION_PATH="/Users/ice/Downloads/${DB_NAME}"
NOT_PRESENT="List of devices attached"
ADB_FOUND=`${ADB_PATH}/adb devices | tail -2 | head -1 | cut -f 1 | sed 's/ *$//g'`
if [[ ${ADB_FOUND} == ${NOT_PRESENT} ]]; then
echo "Make sure a device is connected"
else
${ADB_PATH}/adb exec-out run-as ${PACKAGE_NAME} cat files/${DB_NAME} > ${DESTINATION_PATH}
echo "Database exported to ${DESTINATION_PATH}"
fi
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/mirrors/NowView.git
git@gitee.com:mirrors/NowView.git
mirrors
NowView
NowView
now2

搜索帮助