Variable: tramp-gvfs-file-system-attributes-regexp

tramp-gvfs-file-system-attributes-regexp is a variable defined in tramp-gvfs.el.gz.

Value

"^[[:blank:]]*\\(\\(?:filesystem::\\(?:free\\|size\\|used\\)\\)\\):[[:blank:]]+\\(.*\\)$"

Documentation

Regexp to parse GVFS file system attributes with gvfs-info.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp-gvfs.el.gz
(defconst tramp-gvfs-file-system-attributes-regexp
  (tramp-compat-rx
   bol (* blank)
   (group (regexp (regexp-opt tramp-gvfs-file-system-attributes)))
   ":" (+ blank) (group (* nonl)) eol)
  "Regexp to parse GVFS file system attributes with `gvfs-info'.")