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. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by the University of
19 * California, Berkeley and its contributors.
20 * 4. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * @(#) Copyright (c) 1991, 1993 The Regents of the University of California. All rights reserved.
37 * @(#)tail.c 8.1 (Berkeley) 6/6/93
38 * $FreeBSD: src/usr.bin/tail/tail.c,v 1.6.2.2 2001/12/19 20:29:31 iedowse Exp $
39 * $DragonFly: src/usr.bin/tail/tail.c,v 1.6 2005/03/01 21:37:33 cpressey Exp $
42 #include <sys/types.h>
52 int Fflag
, fflag
, rflag
, rval
, no_files
;
57 static void obsolete(char **);
58 static void usage(void);
59 static void getarg(int, enum STYLE
, enum STYLE
, enum STYLE
*, int *, off_t
*);
62 main(int argc
, char **argv
)
74 while ((ch
= getopt(argc
, argv
, "Fb:c:fn:r")) != -1)
76 case 'F': /* -F is superset of (and implies) -f */
80 getarg(512, FBYTES
, RBYTES
, &style
, &style_set
, &off
);
83 getarg(1, FBYTES
, RBYTES
, &style
, &style_set
, &off
);
89 getarg(1, FLINES
, RLINES
, &style
, &style_set
, &off
);
101 no_files
= argc
? argc
: 1;
104 * If displaying in reverse, don't permit follow option, and convert
112 else if (style
== FLINES
)
117 * If style not specified, the default is the whole file for -r, and
118 * the last 10 lines if not -r.
130 if (*argv
&& fflag
) {
131 files
= malloc(no_files
* sizeof(struct file_info
));
133 err(1, "Couldn't malloc space for files descriptors.");
135 for (file
= files
; (fname
= *argv
++) != NULL
; file
++) {
136 file
->file_name
= strdup(fname
);
137 if (! file
->file_name
)
138 errx(1, "Couldn't alloc space for file name.");
139 file
->fp
= fopen(file
->file_name
, "r");
140 if (file
->fp
== NULL
||
141 fstat(fileno(file
->fp
), &file
->st
) == -1) {
147 follow(files
, style
, off
);
148 for (i
= 0, file
= files
; i
< no_files
; i
++, file
++)
149 free(file
->file_name
);
152 for (i
= 0; (fname
= *argv
++) != NULL
; ++i
) {
153 if ((fp
= fopen(fname
, "r")) == NULL
||
154 fstat(fileno(fp
), &sb
)) {
159 showfilename(i
, fname
);
160 (void)fflush(stdout
);
164 reverse(fp
, style
, off
, &sb
);
166 forward(fp
, style
, off
, &sb
);
172 if (fstat(fileno(stdin
), &sb
)) {
178 * Determine if input is a pipe. 4.4BSD will set the SOCKET
179 * bit in the st_mode field for pipes. Fix this then.
181 if (lseek(fileno(stdin
), (off_t
)0, SEEK_CUR
) == -1 &&
184 fflag
= 0; /* POSIX.2 requires this. */
188 reverse(stdin
, style
, off
, &sb
);
190 forward(stdin
, style
, off
, &sb
);
196 * Tail's options are weird. First, -n10 is the same as -n-10, not
197 * -n+10. Second, the number options are 1 based and not offsets,
198 * so -n+1 is the first line, and -c-1 is the last byte. Third, the
199 * number options for the -r option specify the number of things that
200 * get displayed, not the starting point in the file. The one major
201 * incompatibility in this version as compared to historical versions
202 * is that the 'r' option couldn't be modified by the -lbc options,
203 * i.e. it was always done in lines. This version treats -rc as a
204 * number of characters in reverse order. Finally, the default for
205 * -r is the entire file, not 10 lines.
208 getarg(int units
, enum STYLE forward_style
, enum STYLE backward_style
,
209 enum STYLE
*style
, int *style_set
, off_t
*off
)
216 *off
= strtoll(optarg
, &p
, 10) * units
;
218 errx(1, "illegal offset -- %s", optarg
);
223 *style
= forward_style
;
229 *style
= backward_style
;
237 * Convert the obsolete argument form into something that getopt can handle.
238 * This means that anything of the form [+-][0-9][0-9]*[lbc][Ffr] that isn't
239 * the option argument for a -b, -c or -n option gets converted.
242 obsolete(char **argv
)
248 while ((ap
= *++argv
) != NULL
) {
249 /* Return if "--" or not an option of any form. */
253 } else if (ap
[1] == '-')
257 /* Old-style option. */
258 case '0': case '1': case '2': case '3': case '4':
259 case '5': case '6': case '7': case '8': case '9':
261 /* Malloc space for dash, new option and argument. */
263 if ((start
= p
= malloc(len
+ 3)) == NULL
)
268 * Go to the end of the option argument. Save off any
269 * trailing options (-3lf) and translate any trailing
270 * output style characters.
273 if (*t
== 'F' || *t
== 'f' || *t
== 'r') {
289 case '0': case '1': case '2': case '3': case '4':
290 case '5': case '6': case '7': case '8': case '9':
294 errx(1, "illegal option -- %s", *argv
);
302 * Options w/ arguments, skip the argument and continue
303 * with the next option.
311 /* Options w/o arguments, continue with the next option. */
317 /* Illegal option, return and let getopt handle it. */
327 (void)fprintf(stderr
,
328 "usage: tail [-F | -f | -r] [-b # | -c # | -n #] [file ...]\n");