- Simplify the formatting in the SYNOPSIS.

- Add the forgotten new option in usage().
This commit is contained in:
Ruslan Ermilov 2006-06-30 08:19:26 +00:00
parent e2668f5563
commit 2982527d8b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=160049
2 changed files with 3 additions and 4 deletions

View File

@ -48,9 +48,7 @@
.Fl f |
.Fl r
.Oc
.Oo
.Fl q
.Oc
.Op Fl q
.Oo
.Fl b Ar number |
.Fl c Ar number |

View File

@ -332,6 +332,7 @@ static void
usage(void)
{
(void)fprintf(stderr,
"usage: tail [-F | -f | -r] [-b # | -c # | -n #] [file ...]\n");
"usage: tail [-F | -f | -r] [-q] [-b # | -c # | -n #]"
" [file ...]\n");
exit(1);
}