How to run command as background process using ADB?

前端 未结 2 991
无人共我
无人共我 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

    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.

提交回复
热议问题