summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-07-30 21:10:59 +0000
committerJim Meyering <jim@meyering.net>1999-07-30 21:10:59 +0000
commitb1476fec9539ef5a5de5139254683806165fb12f (patch)
treee84e291e27153009f574a311880f6e1bf3c55509 /doc
parent48cb109a8742387e3c1e8a411acb1f5fbebed5a9 (diff)
downloadcoreutils-b1476fec9539ef5a5de5139254683806165fb12f.tar.xz
*** empty log message ***
Diffstat (limited to 'doc')
-rw-r--r--doc/textutils.texi22
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/textutils.texi b/doc/textutils.texi
index a9d3b70c5..a7d0c1fa8 100644
--- a/doc/textutils.texi
+++ b/doc/textutils.texi
@@ -1527,18 +1527,18 @@ changed size.
@itemx --pid=@var{pid}
@opindex --pid
-When following by name or by descriptor, you may specify the process ID
-@var{pid} of the sole writer of all @var{file} arguments. Then, when that
-process terminates, tail will also terminate. For this to work properly,
-the tail process and the writer must be on the same machine and the tail
-process must be able to send a signal to the writing process (but does
-not actually send any signal). For example, to save the output of a
-build in a file and to watch the file grow, if you invoke @code{make}
-and @code{tail} like this then the tail process will stop when your
-build completes. Without this option, you would have had to kill the
-@code{tail -f} process yourself.
+When following by name or by descriptor, you may specify the process ID,
+@var{pid}, of the sole writer of all @var{file} arguments. Then, shortly
+after that process terminates, tail will also terminate. This will work
+properly only if the tailing process and the writer are on the same
+machine and the tailing process is able to send signals to the writing
+process (@code{tail} does not actually send any signal). For example,
+to save the output of a build in a file and to watch the file grow, if
+you invoke @code{make} and @code{tail} like this then the tail process
+will stop when your build completes. Without this option, you would
+have had to kill the @code{tail -f} process yourself.
@example
-make >& makerr & tail --pid=$! -f makerr
+$ make >& makerr & tail --pid=$! -f makerr
@end example
If you specify a @var{pid} that is not in use or that does not correspond
to the process that is writing to the tailed files, then @code{tail}