Variable: netstat-program

netstat-program is a customizable variable defined in net-utils.el.gz.

Value

"ss"

Documentation

Program to print network statistics.

This variable was added, or its default value changed, in Emacs 26.1.

Source Code

;; Defined in /usr/src/emacs/lisp/net/net-utils.el.gz
(defcustom netstat-program
  (cond ((executable-find "netstat") "netstat")
        ((net-utils--executable-find-sbin "ss"))
        (t "ss"))
  "Program to print network statistics."
  :type  'string
  :version "26.1")