Справочник по консольным командам Toybox для Android 12


  Ver.0.8.4     Ver.0.8.9     Pending  

Путь: Toys/Other, команды версии: Ver.4     Ver.9


count

Комментарии в файле count.c :

usage: count

Скопируйте стандартный ввод в стандартный вывод, отобразив простой индикатор выполнения в стандартный вывод.


usage: count

Copy stdin to stdout, displaying simple progress indicator to stderr.


Исходный текст в файле count.c

#include "toys.h"

void count_main(void)
{
  struct pollfd pfd = {0, POLLIN, 0};
  unsigned long long size = 0, last = 0, then = 0, now;
  char *buf = xmalloc(65536);
  int len;

  // poll, print if data not ready, update 4x/second otherwise
  for (;;) {
    if (!(len = poll(&pfd, 1, (last != size) ? 250 : 0))) continue;
    if (len<0 && errno != EINTR && errno != ENOMEM) perror_exit(0);
    if ((len = xread(0, buf, 65536))) {
      xwrite(1, buf, len);
      size += len;
      if ((now = millitime())-then<250) continue;
    }
    dprintf(2, "%llu bytes\r", size);
    if (!len) break;
  }
  dprintf(2, "\n");
}