Skip to content

Instantly share code, notes, and snippets.

@playfulgod
Created June 11, 2014 19:47
Show Gist options
  • Save playfulgod/3403ef37c55ecb1ba8a1 to your computer and use it in GitHub Desktop.
Save playfulgod/3403ef37c55ecb1ba8a1 to your computer and use it in GitHub Desktop.
#!/bin/bash
platform=`uname`
if [ $(uname -p) = 'powerpc' ]; then
echo "[-] PowerPC is not supported."
exit 1
fi
if [ "$platform" = 'Darwin' ]; then
adb="./adb.osx"
version="OS X"
else
adb="./adb.linux"
version="Linux"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment