Function: tramp-get-remote-groups
tramp-get-remote-groups is a byte-compiled function defined in
tramp.el.gz.
Signature
(tramp-get-remote-groups VEC ID-FORMAT)
Documentation
The list of groups of the remote connection VEC, in ID-FORMAT.
ID-FORMAT valid values are string and integer.
Source Code
;; Defined in /usr/src/emacs/lisp/net/tramp.el.gz
(defun tramp-get-remote-groups (vec id-format)
"The list of groups of the remote connection VEC, in ID-FORMAT.
ID-FORMAT valid values are `string' and `integer'."
(and (tramp-file-name-p vec)
(with-tramp-connection-property vec (format "groups-%s" id-format)
(tramp-file-name-handler #'tramp-get-remote-groups vec id-format))))