mirror of
https://github.com/coreutils/coreutils.git
synced 2025-01-21 23:53:29 +08:00
(main): Warn about following stdin only when it's a tty.
This commit is contained in:
parent
63cd5e88a1
commit
ace768ee42
@ -1725,7 +1725,7 @@ main (int argc, char **argv)
|
||||
/* When following forever, warn if any file is `-'.
|
||||
This is only a warning, since tail's output (before a failing seek,
|
||||
and that from any non-stdin files) might still be useful. */
|
||||
if (forever && found_hyphen)
|
||||
if (forever && found_hyphen && isatty (STDIN_FILENO))
|
||||
error (0, 0, _("warning: following standard input"
|
||||
" indefinitely is ineffective"));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user