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 * 4. 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/types.h>
45 int Fflag
, fflag
, qflag
, rflag
, rval
, no_files
;
49 static void obsolete(char **);
50 static void usage(void);
53 main(int argc
, char *argv
[])
65 * Tail's options are weird. First, -n10 is the same as -n-10, not
66 * -n+10. Second, the number options are 1 based and not offsets,
67 * so -n+1 is the first line, and -c-1 is the last byte. Third, the
68 * number options for the -r option specify the number of things that
69 * get displayed, not the starting point in the file. The one major
70 * incompatibility in this version as compared to historical versions
71 * is that the 'r' option couldn't be modified by the -lbc options,
72 * i.e. it was always done in lines. This version treats -rc as a
73 * number of characters in reverse order. Finally, the default for
74 * -r is the entire file, not 10 lines.
76 #define ARG(units, forward, backward) { \
79 off = strtoll(optarg, &p, 10) * (units); \
81 errx(1, "illegal offset -- %s", optarg); \
82 switch (optarg[0]) { \
100 while ((ch
= getopt(argc
, argv
, "Fb:c:fn:qr")) != -1)
102 case 'F': /* -F is superset of (and implies) -f */
106 ARG(512, FBYTES
, RBYTES
);
109 ARG(1, FBYTES
, RBYTES
);
115 ARG(1, FLINES
, RLINES
);
130 no_files
= argc
? argc
: 1;
133 * If displaying in reverse, don't permit follow option, and convert
141 else if (style
== FLINES
)
146 * If style not specified, the default is the whole file for -r, and
147 * the last 10 lines if not -r.
149 if (style
== NOTSET
) {
159 if (*argv
&& fflag
) {
160 files
= (struct file_info
*)malloc(no_files
*
161 sizeof (struct file_info
));
163 err(1, "Couldn't malloc space for file descriptors.");
165 for (file
= files
; (fn
= *argv
++); file
++) {
166 file
->file_name
= strdup(fn
);
167 if (! file
->file_name
)
168 errx(1, "Couldn't malloc space for file name.");
169 if ((file
->fp
= fopen(file
->file_name
, "r")) == NULL
||
170 fstat(fileno(file
->fp
), &file
->st
)) {
171 if (file
->fp
!= NULL
) {
172 (void) fclose(file
->fp
);
175 if (!Fflag
|| errno
!= ENOENT
)
176 ierr(file
->file_name
);
179 follow(files
, style
, off
);
180 for (i
= 0, file
= files
; i
< no_files
; i
++, file
++) {
181 free(file
->file_name
);
185 for (first
= 1; (fn
= *argv
++); ) {
186 if ((fp
= fopen(fn
, "r")) == NULL
||
187 fstat(fileno(fp
), &sb
)) {
191 if (argc
> 1 && !qflag
) {
192 (void) printf("%s==> %s <==\n",
193 first
? "" : "\n", fn
);
195 (void) fflush(stdout
);
199 reverse(fp
, fn
, style
, off
, &sb
);
201 forward(fp
, fn
, style
, off
, &sb
);
206 if (fstat(fileno(stdin
), &sb
)) {
212 * Determine if input is a pipe. 4.4BSD will set the SOCKET
213 * bit in the st_mode field for pipes. Fix this then.
215 if (lseek(fileno(stdin
), (off_t
)0, SEEK_CUR
) == -1 &&
218 fflag
= 0; /* POSIX.2 requires this. */
222 reverse(stdin
, fn
, style
, off
, &sb
);
224 forward(stdin
, fn
, style
, off
, &sb
);
230 * Convert the obsolete argument form into something that getopt can handle.
231 * This means that anything of the form [+-][0-9][0-9]*[lbc][Ffr] that isn't
232 * the option argument for a -b, -c or -n option gets converted.
235 obsolete(char *argv
[])
241 while ((ap
= *++argv
)) {
242 /* Return if "--" or not an option of any form. */
246 } else if (ap
[1] == '-')
250 /* Old-style option. */
251 case '0': case '1': case '2': case '3': case '4':
252 case '5': case '6': case '7': case '8': case '9':
254 /* Malloc space for dash, new option and argument. */
256 if ((start
= p
= malloc(len
+ 3)) == NULL
)
261 * Go to the end of the option argument. Save off any
262 * trailing options (-3lf) and translate any trailing
263 * output style characters.
266 if (*t
== 'F' || *t
== 'f' || *t
== 'r') {
282 case '0': case '1': case '2': case '3': case '4':
283 case '5': case '6': case '7': case '8': case '9':
287 errx(1, "illegal option -- %s", *argv
);
290 (void) strcpy(p
, ap
);
295 * Legacy Solaris tail supports "+c" "-c", "+l", "-l",
296 * "+b", and "-b" with an default number of 10. Map
297 * these arguments to an explicit +/-10 for FreeBSD.
298 * New argument will be of the form -[bcn][+-]10
303 if ((start
= p
= malloc(6)) == NULL
)
317 (void) snprintf(p
, 6, "%c10", *argv
[0]);
322 * Options w/ arguments, skip the argument and continue
323 * with the next option.
329 /* Options w/o arguments, continue with the next option. */
335 /* Illegal option, return and let getopt handle it. */
345 (void) fprintf(stderr
,
346 "usage: tail [-F | -f | -r] [-q] [-b # | -c # | -n #]"