Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am mnexo on github.
  • I am mnexo (https://keybase.io/mnexo) on keybase.
  • I have a public key ASCW8xsI3iYcf2DGYaLIngNh46BykO_25tRiwRCSGy6M3wo

To claim this, I am signing this object:

@mnexo
mnexo / installatron.sh
Last active August 29, 2015 13:59
Installatron: bash script for installing an .apk on all connected devices.
#!/bin/bash
# Installatron: installs an Android APK-file provided onto all attached devices.
# IMPORTANT: This script assumes that `adb` and `aapt` are located on PATH.
# Require at least one argument
if [ -z "$1" ]
then
echo "usage: $(basename $0) [-u] apk_file"
exit 1