view toys/other/tac.c @ 1775:57f2a26fa92c draft toast

To ensure that toybox can be installed alongside busybox without confusing update-alternatives, the paths of the links installed by toybox should match those installed by busybox. This is accomplished by changing the flags of a few tools within toybox.
author Paul Barker <paul@paulbarker.me.uk>
date Sat, 04 Apr 2015 11:58:06 -0500
parents 54d248b907ed
children
line wrap: on
line source

/* tac.c - output lines in reverse order
 *
 * Copyright 2012 Rob Landley <rob@landley.net>

USE_TAC(NEWTOY(tac, NULL, TOYFLAG_USR|TOYFLAG_BIN))

config TAC
  bool "tac"
  default y
  help
    usage: tac [FILE...]

    Output lines in reverse order.
*/

#include "toys.h"

void do_tac(int fd, char *name)
{
  struct arg_list *list = NULL;
  char *c;

  // Read in lines
  for (;;) {
    struct arg_list *temp;
    long len;

    if (!(c = get_rawline(fd, &len, '\n'))) break;

    temp = xmalloc(sizeof(struct arg_list));
    temp->next = list;
    temp->arg = c;
    list = temp;
  }

  // Play them back.
  while (list) {
    struct arg_list *temp = list->next;
    xprintf("%s", list->arg);
    free(list->arg);
    free(list);
    list = temp;
  }
}

void tac_main(void)
{
  loopfiles(toys.optargs, do_tac);
}