我必须测量/dev/urandom 的效率作为作业。我有以下任务:检查,您可以在 1 分钟内从/dev/urandom 获得多少字节的数据。不要将获取的数据写入磁盘,因为它可能会减慢一切。
我试过了
timeout 60s cat /dev/urandom | wc -c
但我收到的只是“终止”消息。
最佳答案
添加 --foreground
选项:
timeout --foreground 60s cat /dev/urandom | wc -c
关于linux - 测量 dev/urandom 效率,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37377063/