Re: [PATCH v2] ss: add option to print socket information on one line
From: David Ahern <hidden>
Date: 2019-05-02 23:11:39
From: David Ahern <hidden>
Date: 2019-05-02 23:11:39
On 4/30/19 7:38 PM, Josh Hunt wrote:
Multi-line output in ss makes it difficult to search for things with grep. This new option will make it easier to find sockets matching certain criteria with simple grep commands.
...
Signed-off-by: Josh Hunt <redacted> --- v1 -> v2 * Update long option to --oneline to match other ip tools as per David. man/man8/ss.8 | 3 +++ misc/ss.c | 51 +++++++++++++++++++++++++++++++++++++++++---------- 2 files changed, 44 insertions(+), 10 deletions(-)
diff --git a/misc/ss.c b/misc/ss.c index 9cb3ee19e542..e8e7b62eb4a5 100644 --- a/misc/ss.c +++ b/misc/ss.c@@ -121,6 +121,7 @@ static int follow_events; static int sctp_ino; static int show_tipcinfo; static int show_tos; +int oneline = 0;
dropped the ' = 0' which is unnecessary and applied to iproute2-next.