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
32 * @(#) Copyright (c) 1991, 1993 The Regents of the University of California. All rights reserved.
33 * @(#)tail.c 8.1 (Berkeley) 6/6/93
34 * $FreeBSD: src/usr.bin/tail/tail.c,v 1.6.2.2 2001/12/19 20:29:31 iedowse Exp $
37 #include <sys/types.h>
47 int Fflag
, fflag
, qflag
, rflag
, rval
, no_files
;
52 static void obsolete(char **);
53 static void usage(void);
54 static void getarg(int, enum STYLE
, enum STYLE
, enum STYLE
*, int *, off_t
*);
57 main(int argc
, char **argv
)
69 while ((ch
= getopt(argc
, argv
, "Fb:c:fn:qr")) != -1)
71 case 'F': /* -F is superset of (and implies) -f */
75 getarg(512, FBYTES
, RBYTES
, &style
, &style_set
, &off
);
78 getarg(1, FBYTES
, RBYTES
, &style
, &style_set
, &off
);
84 getarg(1, FLINES
, RLINES
, &style
, &style_set
, &off
);
99 no_files
= argc
? argc
: 1;
102 * If displaying in reverse, don't permit follow option, and convert
110 else if (style
== FLINES
)
115 * If style not specified, the default is the whole file for -r, and
116 * the last 10 lines if not -r.
128 if (*argv
&& fflag
) {
129 files
= malloc(no_files
* sizeof(struct file_info
));
131 err(1, "Couldn't malloc space for files descriptors.");
133 for (file
= files
; (fname
= *argv
++) != NULL
; file
++) {
134 file
->file_name
= strdup(fname
);
135 if (! file
->file_name
)
136 errx(1, "Couldn't alloc space for file name.");
137 file
->fp
= fopen(file
->file_name
, "r");
138 if (file
->fp
== NULL
||
139 fstat(fileno(file
->fp
), &file
->st
) == -1) {
144 follow(files
, style
, off
);
145 for (i
= 0, file
= files
; i
< no_files
; i
++, file
++)
146 free(file
->file_name
);
149 for (i
= 0; (fname
= *argv
++) != NULL
; ++i
) {
150 if ((fp
= fopen(fname
, "r")) == NULL
||
151 fstat(fileno(fp
), &sb
)) {
156 showfilename(i
, fname
);
157 (void)fflush(stdout
);
161 reverse(fp
, style
, off
, &sb
);
163 forward(fp
, style
, off
, &sb
);
169 if (fstat(fileno(stdin
), &sb
)) {
175 * Determine if input is a pipe. 4.4BSD will set the SOCKET
176 * bit in the st_mode field for pipes. Fix this then.
178 if (lseek(fileno(stdin
), (off_t
)0, SEEK_CUR
) == -1 &&
181 fflag
= 0; /* POSIX.2 requires this. */
185 reverse(stdin
, style
, off
, &sb
);
187 forward(stdin
, style
, off
, &sb
);
193 * Tail's options are weird. First, -n10 is the same as -n-10, not
194 * -n+10. Second, the number options are 1 based and not offsets,
195 * so -n+1 is the first line, and -c-1 is the last byte. Third, the
196 * number options for the -r option specify the number of things that
197 * get displayed, not the starting point in the file. The one major
198 * incompatibility in this version as compared to historical versions
199 * is that the 'r' option couldn't be modified by the -lbc options,
200 * i.e. it was always done in lines. This version treats -rc as a
201 * number of characters in reverse order. Finally, the default for
202 * -r is the entire file, not 10 lines.
205 getarg(int units
, enum STYLE forward_style
, enum STYLE backward_style
,
206 enum STYLE
*style
, int *style_set
, off_t
*off
)
213 *off
= strtoll(optarg
, &p
, 10) * units
;
215 errx(1, "illegal offset -- %s", optarg
);
220 *style
= forward_style
;
226 *style
= backward_style
;
234 * Convert the obsolete argument form into something that getopt can handle.
235 * This means that anything of the form [+-][0-9][0-9]*[lbc][Ffr] that isn't
236 * the option argument for a -b, -c or -n option gets converted.
239 obsolete(char **argv
)
245 while ((ap
= *++argv
) != NULL
) {
246 /* Return if "--" or not an option of any form. */
250 } else if (ap
[1] == '-')
254 /* Old-style option. */
255 case '0': case '1': case '2': case '3': case '4':
256 case '5': case '6': case '7': case '8': case '9':
258 /* Malloc space for dash, new option and argument. */
260 if ((start
= p
= malloc(len
+ 3)) == NULL
)
265 * Go to the end of the option argument. Save off any
266 * trailing options (-3lf) and translate any trailing
267 * output style characters.
270 if (*t
== 'F' || *t
== 'f' || *t
== 'r') {
286 case '0': case '1': case '2': case '3': case '4':
287 case '5': case '6': case '7': case '8': case '9':
291 errx(1, "illegal option -- %s", *argv
);
299 * Options w/ arguments, skip the argument and continue
300 * with the next option.
308 /* Options w/o arguments, continue with the next option. */
314 /* Illegal option, return and let getopt handle it. */
324 (void)fprintf(stderr
,
325 "usage: tail [-F | -f | -r] [-b # | -c # | -n #] [file ...]\n");