Skip to content

Commit e779d97

Browse files
authored
netstat: add (undocumented) SuSE alias -T for -W
1 parent ba936bc commit e779d97

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

netstat.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2048,6 +2048,7 @@ int main
20482048
{"programs", 0, 0, 'p'},
20492049
{"verbose", 0, 0, 'v'},
20502050
{"statistics", 0, 0, 's'},
2051+
{"notrim", 0, 0, 'T'}, // alias for W
20512052
{"wide", 0, 0, 'W'},
20522053
{"numeric", 0, 0, 'n'},
20532054
{"numeric-hosts", 0, 0, '!'},
@@ -2114,6 +2115,7 @@ int main
21142115
flag_int++;
21152116
break;
21162117
case 'W':
2118+
case 'T':
21172119
flag_wide++;
21182120
break;
21192121
case 'n':

0 commit comments

Comments
 (0)