Variable: tramp-busybox-process-attributes-ps-args

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

Value

("-o"
 "pid,user,group,comm=abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
 "-o" "stat=abcde" "-o" "ppid,pgid,tty,time,nice,etime,args")

Documentation

List of arguments for "ps".

See tramp-process-attributes-ps-args.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp-integration.el.gz
;; Tested with BusyBox v1.24.1.
(defconst tramp-busybox-process-attributes-ps-args
  `("-o"
    ,(string-join
      '("pid"
        "user"
        "group"
        "comm=abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ")
      ",")
    "-o" "stat=abcde"
    "-o"
    ,(string-join
      '("ppid"
        "pgid"
        "tty"
        "time"
        "nice"
        "etime"
        "args")
      ","))
  "List of arguments for \"ps\".
See `tramp-process-attributes-ps-args'.")