aboutsummaryrefslogtreecommitdiff
path: root/toys/tail.c
AgeCommit message (Collapse)Author
2012-08-25Move commands into "posix", "lsb", and "other" menus/directories.Rob Landley
2012-07-15Genericize llist code a bit: rename llist_free() to llist_traverse(), and no ↵Rob Landley
longer accept NULL as a synonym for free.
2012-07-05- Do not abort testing after running the sort testsElie De Brauwer
- Add tail testcases for input not ending on a newline - Fix condition where input coming from stdin does not have a trailing newline
2012-03-12Redo tail to use optargs and optionally support lseek. Add support to ↵Rob Landley
optargs and llist.c, plus add a test suite entry. Still no -f support though.
2012-02-28Add "-" type to optargs and teach tail.c to use it. Tighten up help text, ↵Rob Landley
use xzalloc() and xputc() as appropriate.
2012-02-23Bugfix: use the right USE symbol.Rob Landley
2012-02-23Add tail.Timothy Elliott
Disabled by default because the -f option is not implemented.