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.
我需要在我的实用程序中使用 android 下的设备提供的数据流。
在标准 Linux 发行版下,我将执行以下操作:
util -input /dev/random
和adbAndroid 我想使用/dev/random来自 Android 设备的 a 作为我本地的输入util。我应该如何创建这个管道?
adb
/dev/random
util
如果我做
adb pull /dev/random random
adb 在转储 1 个完整副本后才退出,但我需要一个恒定的管道/流。
谢谢。
你应该使用这样的东西
$ adb shell dd if=/dev/random | util -input -
前提是如果-指定了您的 util 从 stdin 读取。
-
另请注意,该命令使用的是非阻塞随机源。