diff options
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/tail.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/coreutils/tail.c b/coreutils/tail.c index 4fe92ba..90cc2a6 100644 --- a/coreutils/tail.c +++ b/coreutils/tail.c @@ -127,6 +127,10 @@ int tail_main(int argc, char **argv) for (i = 0; i < nfiles; i++) { if (fds[i] == -1) continue; + if (!count) { + lseek(fds[i], 0, SEEK_END); + continue; + } seen = 0; if (show_headers || (!hide_headers && nfiles > 1)) printf("%s==> %s <==\n", i == 0 ? "" : "\n", argv[optind + i]); |