How to run command as background process using ADB?

前端 未结 2 927
无人共我
无人共我 2021-02-15 23:43

I am trying to run logcat in background using adb.

adb shell \"logcat -r 2000 -f /data/local/test.log &\"

But it does not work. If I do ad

相关标签:
2条回答
  • 2021-02-16 00:15

    Adding nohup seems to work.
    adb shell "nohup logcat -r 2000 -f /data/local/test.log &"

    0 讨论(0)
  • 2021-02-16 00:15

    If you can't run nohup directly, then you could try this: busybox nohup logcat

    BusyBox combines tiny versions of many common UNIX utilities into a single small executable. So it has nohup feature as well and you could use it via busybox if manufacturer turns nohup option on at compile time.

    0 讨论(0)
提交回复
热议问题