Variable: traceroute-program

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

Value

"traceroute"

Documentation

Program to trace network hops to a destination.

Source Code

;; Defined in /usr/src/emacs/lisp/net/net-utils.el.gz
(defcustom traceroute-program
  (if (eq system-type 'windows-nt)
      "tracert"
    "traceroute")
  "Program to trace network hops to a destination."
  :type  'string)