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.17 2013/01/31 23:09:06 wiz Exp $");
46 #include <sys/types.h>
55 int fflag
, rflag
, rval
;
58 static void obsolete(char **);
59 static void usage(void) __dead
;
62 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 xerrx(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)
137 "-f and -F options only appropriate for a single file");
140 * If displaying in reverse, don't permit follow option, and convert
148 else if (style
== FLINES
)
153 * If style not specified, the default is the whole file for -r, and
154 * the last 10 lines if not -r.
156 if (style
== NOTSET
) {
166 for (first
= 1; (fname
= *argv
++) != NULL
;) {
167 if ((fp
= fopen(fname
, "r")) == NULL
||
168 fstat(fileno(fp
), &sb
)) {
173 (void)printf("%s==> %s <==\n",
174 first
? "" : "\n", fname
);
176 (void)fflush(stdout
);
180 reverse(fp
, style
, off
, &sb
);
182 forward(fp
, style
, off
, &sb
);
188 if (fstat(fileno(stdin
), &sb
)) {
194 * Determine if input is a pipe. 4.4BSD will set the SOCKET
195 * bit in the st_mode field for pipes. Fix this then.
197 if (lseek(fileno(stdin
), (off_t
)0, SEEK_CUR
) == -1 &&
200 fflag
= 0; /* POSIX.2 requires this. */
204 reverse(stdin
, style
, off
, &sb
);
206 forward(stdin
, style
, off
, &sb
);
212 * Convert the obsolete argument form into something that getopt can handle.
213 * This means that anything of the form [+-][0-9][0-9]*[lbc][fr] that isn't
214 * the option argument for a -b, -c or -n option gets converted.
217 obsolete(char *argv
[])
223 while ((ap
= *++argv
) != NULL
) {
224 /* Return if "--" or not an option of any form. */
228 } else if (ap
[1] == '-')
232 /* Old-style option. */
233 case '0': case '1': case '2': case '3': case '4':
234 case '5': case '6': case '7': case '8': case '9':
236 /* Malloc space for dash, new option and argument. */
238 if ((start
= p
= malloc(len
+ 3)) == NULL
)
243 * Go to the end of the option argument. Save off any
244 * trailing options (-3lf) and translate any trailing
245 * output style characters.
248 if (*t
== 'f' || *t
== 'r') {
264 case '0': case '1': case '2': case '3': case '4':
265 case '5': case '6': case '7': case '8': case '9':
269 xerrx(1, "illegal option -- %s", *argv
);
277 * Options w/ arguments, skip the argument and continue
278 * with the next option.
286 /* Options w/o arguments, continue with the next option. */
291 /* Illegal option, return and let getopt handle it. */
301 (void)fprintf(stderr
,
302 "Usage: %s [-f | -F | -r] [-b # | -c # | -n #] [file ...]\n",