On Jan 28, 2008 4:10 PM, Ryan Johnson <[EMAIL PROTECTED]> wrote: > > Thanks Drew. > > This is the script that worked in the end: > > > (./emulator) & > sleep 8; > ./adb shell export PATH=/data/busybox:$PATH; > ./adb shell > > Unfortunately it appears that the PATH is set for each instance of the > shell, not the emulator, so that didn't work anyway.
It looks like you are starting up a shell, setting the PATH environment variable, exiting that shell (which will throw away any modification made to it), and then starting a new shell. Try just one adb shell command like this: PATH=/data/busybox:$PATH ./adb shell Bryan -------------------- BYU Unix Users Group http://uug.byu.edu/ The opinions expressed in this message are the responsibility of their author. They are not endorsed by BYU, the BYU CS Department or BYU-UUG. ___________________________________________________________________ List Info: http://uug.byu.edu/cgi-bin/mailman/listinfo/newbies
