#1089566 tail man page incorrectly use --follow=something

Package:
coreutils
Source:
coreutils
Description:
GNU core utilities
Submitter:
Date:
2024-12-09 02:33:02 UTC
Severity:
normal
#1089566#5
Date:
2024-12-09 01:53:03 UTC
From:
To:
man tail is using --follow=something several times. My understanding is that
the tail command will accept such usage. It does not.

    $ tail --follow=nosuchfile
    tail: invalid argument ‘nosuchfile’ for ‘--follow’
    Valid arguments are:
      - ‘descriptor’
      - ‘name’
    Try 'tail --help' for more information.

    $ tail --follow nosuchfile
    tail: cannot open 'nosuchfile' for reading: No such file or directory
    tail: no files remaining

I would say either tail manual page, or tail itself, should be fixed.