Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-06-03 | Actually, we've handled FIFOs on stdin in accordance with POSIX since 1996. | Philip Guenther | |
query and ok jmc@ | |||
2014-05-31 | tweak previous; | Jason McIntyre | |
2010-09-03 | add an EXIT STATUS section for /usr/bin; | Jason McIntyre | |
2009-10-28 | rcsid[] and sccsid[] and copyright[] are essentially unmaintained (and | Theo de Raadt | |
unmaintainable). these days, people use source. these id's do not provide any benefit, and do hurt the small install media (the 33,000 line diff is essentially mechanical) ok with the idea millert, ok dms | |||
2009-02-08 | bump the posix reference in STANDARDS to IEEE Std 1003.1-2008, with a few | Jason McIntyre | |
updates to follow; | |||
2008-11-13 | Backout previous commit, there are still some issues with it. | Landry Breuil | |
ok sthen@ | |||
2008-10-17 | Permit tail -f to follow multiple files, useful when you want to monitor | Landry Breuil | |
several logfiles in a single terminal. split forward() and move the corresponding -rewritten- code to follow(). Closes PR 5092. ok millert@ gilles@ sobrado@ | |||
2008-06-02 | fix double free which can happen if the last line has no newline; | Otto Moerbeek | |
from Matthew Dempsky; ok ray@ millert@ | |||
2007-10-31 | sync usage() w/ synopsis; from Pierre Riteau | Jason McIntyre | |
ok sobrado | |||
2007-10-22 | use EV_SET() instead of doing it by hand; Iruata Souza | Theo de Raadt | |
2007-09-29 | unneeded includes and whitespace police; from Igor Zinovik | Otto Moerbeek | |
2007-09-16 | Another mem leak plugged. With help from Igor Zinovi. ok millert@ | Otto Moerbeek | |
2007-09-13 | Plug mem leak. From Igor Zinovik; ok millert@ | Otto Moerbeek | |
2007-05-31 | convert to new .Dd format; | Jason McIntyre | |
2007-05-30 | - use a consistent text for STANDARDS | Jason McIntyre | |
- note which options are extensions to POSIX | |||
2006-12-28 | - less macros needed in SYNOPSIS | Jason McIntyre | |
- sort options | |||
2006-10-02 | - simplify a list item | Jason McIntyre | |
- use .Ex | |||
2006-10-02 | reword a clunky sentence; | Jason McIntyre | |
2006-03-24 | ANSIfy. Ok ray@ | Kjell Wooding | |
2006-03-22 | Clean up some lint and -Wall. | Kjell Wooding | |
Changed many signed types ->size_t for consistency. Also, fix some realloc usage. Original from <jasonrcrawford at gmail.com> (ok ray@) Additions and additional cleanup to fix some off_t -> size_t issue by me. "looks good" otto@ | |||
2004-03-12 | If kqueue is not available, revert back to old behavior. Unbreaks tail -f | Otto Moerbeek | |
on NFS and other filesystems not supporting kqueues. ok tedu@ millert@ | |||
2004-03-01 | Unbreak file truncation handling. Resolves PR 3689. | Otto Moerbeek | |
ok tdeval@ millert@ | |||
2004-02-16 | make -b and -c work with large offsets; tweak from millert@ | Otto Moerbeek | |
ok henning@ itojun@ millert@ | |||
2003-07-14 | typo in comment. ok henning@ | Otto Moerbeek | |
2003-07-01 | rewrite to not use mmap(2). solves a bunch of issues: | Henning Brauer | |
- No more I/O related SEGVs (PR 2337?). - Performance linear to size of output, not input file size, even for very large files. Same for -r. - Reverse tail also works for very large files. - Very large values of n possible, even for very large files. Same for -r. work by Otto Moerbeek <otto@drijf.net> tested by and ok millert@ and myself | |||
2003-06-10 | mostly ansi cleanup; pval ok | Theo de Raadt | |
2003-06-03 | Remove the advertising clause in the UCB license which Berkeley | Todd C. Miller | |
rescinded 22 July 1999. Proofed by myself and Theo. | |||
2003-04-08 | strlcpy conversion, increase buffer size by one char. ok millert@ | Daniel Hartmeier | |
2002-02-16 | Part one of userland __P removal. Done with a simple regexp with some minor ↵ | Todd C. Miller | |
hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically. | |||
2001-11-19 | kill more registers | Mike Pechkin | |
millert@ ok | |||
2001-09-19 | occured->occurred | Mike Pechkin | |
idea from deraadt@ via NetBSD millert@ ok p.s. Next commit will fix a typo in the sys/ | |||
2001-08-18 | Use kqueue for -f. | Artur Grabowski | |
2001-07-17 | -Wall cleanup; ok deraadt | Peter Valchev | |
2001-01-17 | avoid C sequence point issues; found by cgd@netbsd.org using a development | Paul Janzen | |
version of gcc. | |||
2000-11-21 | When doing tail -f from stdin don't reopen a local file named stdin. | Artur Grabowski | |
2000-10-12 | MAP_FAILED, not -1 | Artur Grabowski | |
2000-10-07 | - Add EXAMPLES section. | Aaron Campbell | |
- Document that -number is a synonym for -n number. - Some minor formatting changes. | |||
2000-06-23 | Get rid of repeating error messages; From netbsd millert@ ok | Eric Jackson | |
2000-03-11 | Various cleanups and standardizations. | Aaron Campbell | |
2000-01-22 | ie. -> i.e., | Aaron Campbell | |
1999-08-04 | supply particular mapping type to the mmap(2) instead of bogus 0 | Michael Shalayeff | |
1999-06-05 | - remove trailing white space | Aaron Campbell | |
- remove arguments from .Os macros - remove arguments from .Nm macros, where appropriate - some more Dq/Sq/Ql insanity - still lots to do in the usr.bin tree... :/ | |||
1999-04-29 | don't step on the tail if there is no one, or core dumps; millert - yes | Michael Shalayeff | |
1999-02-03 | Fix broken conversion of private err() function and make ierr() and oerr() | Todd C. Miller | |
back into functions, not macros. Also make functions that call mmap() return an int so we can fall back to non-mmap (slow) version on mmap failure. Noticable effects: o when you tail multiple files, if one of the files doesn't exist or is otherwise broken, keep on going to the next file. o it is now possible to tail files > 2gig, though it will be *very* slow since tail will be unable to use mmap() | |||
1998-12-16 | more .Nm fixes | Aaron Campbell | |
1998-10-30 | usr.bin/ man page fixes, t-z | Aaron Campbell | |
1998-09-06 | More man page fixes. Spelling, grammar, some typos. Lots of double-word | Aaron Campbell | |
occurrences squashed as well. | |||
1997-09-21 | $OpenBSD$ | Theo de Raadt | |
1997-05-30 | In -f mode notice when the file has been replace or truncated and | Todd C. Miller | |
deal. Useful for tail'ing log files that get rotated. | |||
1997-05-29 | why select(2) when you can sleep(3) cheap? | kstailey | |