This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# start helium server on android device - see http://www.clockworkmod.com/carbon for more details | |
# set -x | |
# try normal system locations before the local binary | |
unset adb | |
for i in /usr/bin /usr/local/bin "$(/usr/bin/dirname $0)" | |
do | |
i="$i/adb" | |
if [ -f "$i" -a -x "$i" ] |