timeout.1: Fix typos in examples

MFC after:	3 days
This commit is contained in:
Mateusz Piotrowski 2021-10-21 13:06:45 +02:00
parent 5bb67f5f3f
commit 12615938c6

View file

@ -26,7 +26,7 @@
.\"
.\" $FreeBSD$
.\"
.Dd May 20, 2021
.Dd October 21, 2021
.Dt TIMEOUT 1
.Os
.Sh NAME
@ -161,7 +161,7 @@ $ echo $?
.Pp
Same as above but preserving status.
Exit status is 128 + signal number (15 for
.Va SIGTERM )
.Va SIGTERM ) :
.Bd -literal -offset indent
$ timeout --preserve-status 2 sleep 4
$ echo $?
@ -171,7 +171,7 @@ $ echo $?
Same as above but sending
.Va SIGALRM
(signal number 14) instead of
.Va SIGTERM
.Va SIGTERM :
.Bd -literal -offset indent
$ timeout --preserve-status -s SIGALRM 2 sleep 4
$ echo $?
@ -189,8 +189,8 @@ signal after 1 minute and send a
.Va SIGKILL
signal 5 seconds later if the process refuses to stop:
.Bd -literal -offset indent
timeout -k 5s 1m fetch \\
https://download.freebsd.org/ftp/doc/en/books/handbook/book.pdf
$ timeout -k 5s 1m fetch \\
> https://download.freebsd.org/ftp/doc/en/books/handbook/book.pdf
.Ed
.Sh SEE ALSO
.Xr kill 1 ,