Variable: pax-extended-attribute-record-regexp

pax-extended-attribute-record-regexp is a variable defined in tar-mode.el.gz.

Value

"\\([0-9]+\\) \\(gid\\|gname\\|hdrcharset\\|linkpath\\|mtime\\|path\\|size\\|uid\\|uname\\)="

Documentation

Regular expression for looking up extended attributes in a Posix-standard pax extended header of a tar file. Only attributes that tar-mode can grok are mentioned.

Source Code

;; Defined in /usr/src/emacs/lisp/tar-mode.el.gz
;; Reference:
;; https://pubs.opengroup.org/onlinepubs/9699919799/utilities/pax.html#tag_20_92_13_02
(defconst pax-extended-attribute-record-regexp
  ;; We omit attributes that are "reserved" by Posix, since no
  ;; processing has been defined for them.
  "\\([0-9]+\\) \\(gid\\|gname\\|hdrcharset\\|linkpath\\|mtime\\|path\\|size\\|uid\\|uname\\)="
  "Regular expression for looking up extended attributes in a
Posix-standard pax extended header of a tar file.
Only attributes that `tar-mode' can grok are mentioned.")