Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将“top | grep applicationX”的结果保存到 Windows 中的文件中。我可以使用 adb shell top > C:\top_result.txt 保存排名靠前的结果,但我需要使用 grep。所以,我在做:
adb 外壳顶部 | grep 应用程序X
我在终端中获得了我想要的信息,但我想将它保存到一个文件中。谢谢!
adb shell top | grep applicationX > C:\top_result.txt
您可以像这样操作输出:
adb shell top | grep applicationX > /dir/somefile