https://github.com/alxrm/android-pull-db
Simple script that pulls the .db file from the connected device by package name
https://github.com/alxrm/android-pull-db
android bash bash-script bepis sqlite terminal
Last synced: 20 days ago
JSON representation
Simple script that pulls the .db file from the connected device by package name
- Host: GitHub
- URL: https://github.com/alxrm/android-pull-db
- Owner: alxrm
- License: mit
- Created: 2018-12-14T12:23:00.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-19T15:56:47.000Z (about 6 years ago)
- Last Synced: 2024-12-06T14:46:50.281Z (3 months ago)
- Topics: android, bash, bash-script, bepis, sqlite, terminal
- Language: Shell
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# android-pull-db
Well, yeah, it just pulls the `*.db` file from the connected device by package name 🤷♀️
I mean, what else did you want?
## Usage
_Do you have your device connected? You do? And adb is all-set? Good!_
Then just run this in terminal of yours:
```sh
$ sh ./pull.sh com.package.name databaseName.db
```_(or you can add the file to `/usr/local/bin` and rename it to something like `pullandroiddb` and use it everywhere)_
#### Note
**`databaseName.db` should be the exact filename of your database you're using in your app**
If you did it correctly, it'll appear at `~/databaseName.db` and you'll be able to examine it however you want(with [sqlitebrowser](https://sqlitebrowser.org/) for example) :tada:
## License
MIT License. See the [LICENSE](LICENSE) file for more information..