Variable: tramp-process-attributes-ps-args

tramp-process-attributes-ps-args is a variable defined in tramp.el.gz.

Value

("-eww" "-o" "pid,euid,euser,egid,egroup,comm:80,state,ppid,pgrp,sess,tname,tpgid,min_flt,maj_flt,times,pri,nice,thcount,vsize,rss,etimes,pcpu,pmem,args")

Documentation

List of arguments for calling "ps".

See tramp-get-process-attributes.

This list is the default value on remote GNU/Linux systems.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp.el.gz
(defconst tramp-process-attributes-ps-args
  `("-eww"
    "-o"
    ,(mapconcat
     #'identity
     '("pid"
       "euid"
       "euser"
       "egid"
       "egroup"
       "comm:80"
       "state"
       "ppid"
       "pgrp"
       "sess"
       "tname"
       "tpgid"
       "min_flt"
       "maj_flt"
       "times"
       "pri"
       "nice"
       "thcount"
       "vsize"
       "rss"
       "etimes"
       "pcpu"
       "pmem"
       "args")
     ","))
  "List of arguments for calling \"ps\".
See `tramp-get-process-attributes'.

This list is the default value on remote GNU/Linux systems.")