8 ms·
Super cool, thanks. I wondered how its speed could be adjusted and found `pv` can be used for throttling pipe throughput, so thanks for that too! Limited to r
by regentbowerbird 2y ago
Super cool, thanks.
I wondered how its speed could be adjusted and found `pv` can be used for throttling pipe throughput, so thanks for that too!
Limited to reading 50kB per second:
cat /dev/urandom | pv -q -L 50k | hexdump -C | grep 'ca fe'
- taway-20230404 2y agoAlternatively, slow it down by a factor of 16 for every additional specified character. cat /dev/urandom | hexdump -C | grep '9 ca fe'