Skip to content

Instantly share code, notes, and snippets.

View ThomasFondrillon's full-sized avatar

Thomas Fondrillon ThomasFondrillon

View GitHub Profile
@ThomasFondrillon
ThomasFondrillon / android_pull_database.sh
Created May 26, 2014 08:52
Script for pulling the database from an android device
#!/bin/bash
# Script for pulling the database from an android device
# Retrieving parameters
if [ $# != 2 ]; then
echo "Syntaxe : $0 <app_package> <database_name>.db"
exit 1
fi
APP_PACKAGE=$(echo $1)