Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm running into some weird problem using adb.

I want to run a program in the background. My program does not return control to the user, so it is similar to the "top" utility.

I used:

adb shell " top &> /dev/null &"

However, this doesn't work every time. Sometimes I see that a top process is created, sometimes it is not created.

However if I first do adb shell, then at the interactive console, I type

top &> /dev/null &

then a process is created every time, however if I try to exit the shell, it hangs.. Any ideas?

Appreciate it

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.