2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
6 * Edward Sze-Tyan Wang.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the name of the University nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 #include <sys/cdefs.h>
35 __COPYRIGHT("@(#) Copyright (c) 1991, 1993\
36 The Regents of the University of California. All rights reserved.");
41 static char sccsid
[] = "@(#)tail.c 8.1 (Berkeley) 6/6/93";
43 __RCSID("$NetBSD: tail.c,v 1.13 2008/07/21 14:19:26 lukem Exp $");
46 #include <sys/types.h>
55 int fflag
, rflag
, rval
;
58 int main(int, char **);
59 static void obsolete(char **);
60 static void usage(void);
63 main(int argc
, char *argv
[])
74 * Tail's options are weird. First, -n10 is the same as -n-10, not
75 * -n+10. Second, the number options are 1 based and not offsets,
76 * so -n+1 is the first line, and -c-1 is the last byte. Third, the
77 * number options for the -r option specify the number of things that
78 * get displayed, not the starting point in the file. The one major
79 * incompatibility in this version as compared to historical versions
80 * is that the 'r' option couldn't be modified by the -lbc options,
81 * i.e. it was always done in lines. This version treats -rc as a
82 * number of characters in reverse order. Finally, the default for
83 * -r is the entire file, not 10 lines.
85 #define ARG(units, forward, backward) { \
88 off = strtoll(optarg, &p, 10) * (units); \
90 err(1, "illegal offset -- %s", optarg); \
101 style = (backward); \
108 while ((ch
= getopt(argc
, argv
, "Fb:c:fn:r")) != -1)
114 ARG(512, FBYTES
, RBYTES
);
117 ARG(1, FBYTES
, RBYTES
);
123 ARG(1, FLINES
, RLINES
);
135 if (fflag
&& argc
> 1)
136 err(1, "-f and -F options only appropriate for a single file");
139 * If displaying in reverse, don't permit follow option, and convert
147 else if (style
== FLINES
)
152 * If style not specified, the default is the whole file for -r, and
153 * the last 10 lines if not -r.
155 if (style
== NOTSET
) {
165 for (first
= 1; (fname
= *argv
++) != NULL
;) {
166 if ((fp
= fopen(fname
, "r")) == NULL
||
167 fstat(fileno(fp
), &sb
)) {
172 (void)printf("%s==> %s <==\n",
173 first
? "" : "\n", fname
);
175 (void)fflush(stdout
);
179 reverse(fp
, style
, off
, &sb
);
181 forward(fp
, style
, off
, &sb
);
187 if (fstat(fileno(stdin
), &sb
)) {
193 * Determine if input is a pipe. 4.4BSD will set the SOCKET
194 * bit in the st_mode field for pipes. Fix this then.
196 if (lseek(fileno(stdin
), (off_t
)0, SEEK_CUR
) == -1 &&
199 fflag
= 0; /* POSIX.2 requires this. */
203 reverse(stdin
, style
, off
, &sb
);
205 forward(stdin
, style
, off
, &sb
);
211 * Convert the obsolete argument form into something that getopt can handle.
212 * This means that anything of the form [+-][0-9][0-9]*[lbc][fr] that isn't
213 * the option argument for a -b, -c or -n option gets converted.
216 obsolete(char *argv
[])
222 while ((ap
= *++argv
) != NULL
) {
223 /* Return if "--" or not an option of any form. */
227 } else if (ap
[1] == '-')
231 /* Old-style option. */
232 case '0': case '1': case '2': case '3': case '4':
233 case '5': case '6': case '7': case '8': case '9':
235 /* Malloc space for dash, new option and argument. */
237 if ((start
= p
= malloc(len
+ 3)) == NULL
)
238 err(1, "%s", strerror(errno
));
242 * Go to the end of the option argument. Save off any
243 * trailing options (-3lf) and translate any trailing
244 * output style characters.
247 if (*t
== 'f' || *t
== 'r') {
263 case '0': case '1': case '2': case '3': case '4':
264 case '5': case '6': case '7': case '8': case '9':
268 err(1, "illegal option -- %s", *argv
);
276 * Options w/ arguments, skip the argument and continue
277 * with the next option.
285 /* Options w/o arguments, continue with the next option. */
290 /* Illegal option, return and let getopt handle it. */
300 (void)fprintf(stderr
,
301 "usage: tail [-f | -F | -r] [-b # | -c # | -n #] [file ...]\n");