LINUX.ORG.RU

История изменений

Исправление ziemin, (текущая версия) :

В принципе так лучше

cat /dev/urandom | while true
do
  timeout 10 cat > tmphexfile 
  < tmphexfile awk '{магия}'
  rm tmphexfile
done

Исходная версия ziemin, :

В принципе так лучше

xxd /dev/urandom | while true
do
  timeout 10 cat > tmphexfile 
  < tmphexfile xxd -r | awk '{магия}'
  rm tmphexfile
done