diff options
Diffstat (limited to 'templates')
5 files changed, 5 insertions, 5 deletions
diff --git a/templates/show/system/connections/tcp/all/node.def b/templates/show/system/connections/tcp/all/node.def index 6aa1cae..52c3893 100644 --- a/templates/show/system/connections/tcp/all/node.def +++ b/templates/show/system/connections/tcp/all/node.def @@ -1,2 +1,2 @@ help: show all TCP connections -run: /sbin/ss -t -a +run: ss -t -a diff --git a/templates/show/system/connections/tcp/node.def b/templates/show/system/connections/tcp/node.def index 8b6c99b..07d04a6 100644 --- a/templates/show/system/connections/tcp/node.def +++ b/templates/show/system/connections/tcp/node.def @@ -1,2 +1,2 @@ help: show TCP connection information -run: /sbin/ss -t -r +run: ss -t -r diff --git a/templates/show/system/connections/tcp/numeric/node.def b/templates/show/system/connections/tcp/numeric/node.def index 7df9efe..35a13fe 100644 --- a/templates/show/system/connections/tcp/numeric/node.def +++ b/templates/show/system/connections/tcp/numeric/node.def @@ -1,2 +1,2 @@ help: show TCP connection without resolving names -run: /sbin/ss -t -n +run: ss -t -n diff --git a/templates/show/system/connections/udp/node.def b/templates/show/system/connections/udp/node.def index ef9e55f..29e7548 100644 --- a/templates/show/system/connections/udp/node.def +++ b/templates/show/system/connections/udp/node.def @@ -1,2 +1,2 @@ help: show UDP socket information -run: /sbin/ss -u -a -r +run: ss -u -a -r diff --git a/templates/show/system/connections/udp/numeric/node.def b/templates/show/system/connections/udp/numeric/node.def index cb43a91..6eae466 100644 --- a/templates/show/system/connections/udp/numeric/node.def +++ b/templates/show/system/connections/udp/numeric/node.def @@ -1,2 +1,2 @@ help: show UDP socket information without resolving names -run: /sbin/ss -u -a -n +run: ss -u -a -n |