Skip to content

Instantly share code, notes, and snippets.

View tbeckenhauer's full-sized avatar

Tom Beckenhauer tbeckenhauer

View GitHub Profile
@tbeckenhauer
tbeckenhauer / android-backup-apk-and-datas.md
Created May 13, 2022 02:28 — forked from AnatomicJC/android-backup-apk-and-datas.md
Backup android app, data included, no root needed, with adb

Backup android app, data included, no root needed, with adb

adb is the Android CLI tool with which you can interact with your android device, from your PC

You must enable developer mode (tap 7 times on the build version in parameters) and install adb on your PC.

Don't hesitate to read comments, there is useful tips, thanks guys for this !

Fetch application APK

@tbeckenhauer
tbeckenhauer / ping-csv.sh
Created January 14, 2022 00:10 — forked from dansimau/ping-csv.sh
Ping a host and output each reply in CSV format
#!/bin/bash
#
# Do a ping and output results as CSV.
#
# dsimmons@squiz.co.uk
# 2011-12-23
#
if [ $# -lt 1 ]; then
echo "Usage: $0 [--add-timestamp] <ping host>"