[Bug 202708] netstat(1) output depends on options order

From: <bugzilla-noreply_at_freebsd.org>
Date: Fri, 17 Feb 2023 16:45:09 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=202708

Fernando ApesteguĂ­a <fernape@FreeBSD.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|New                         |In Progress
           Assignee|bugs@FreeBSD.org            |fernape@FreeBSD.org
                 CC|                            |fernape@FreeBSD.org

--- Comment #3 from Fernando ApesteguĂ­a <fernape@FreeBSD.org> ---
(In reply to Dmitry Sivachenko from comment #2)

https://reviews.freebsd.org/D38654

I think this is more a documentation issue. In other commands as rm(1) we can
specify too "incompatible" options like -f and -i, but the manual page clearly
specifies that the one that appears last in the command line overrides the
previous incompatible one:

$ touch test_file
fernape@hammer:~/test$ rm -f -i test_file 
remove test_file? y
$ touch test_file
$ rm -i -f test_file 
$

-- 
You are receiving this mail because:
You are the assignee for the bug.