Function: tramp-do-file-attributes-with-perl
tramp-do-file-attributes-with-perl is a byte-compiled function defined
in tramp-sh.el.gz.
Signature
(tramp-do-file-attributes-with-perl VEC LOCALNAME &optional ID-FORMAT)
Documentation
Implement file-attributes for Tramp files using a Perl script.
Source Code
;; Defined in /usr/src/emacs/lisp/net/tramp-sh.el.gz
(defun tramp-do-file-attributes-with-perl
(vec localname &optional id-format)
"Implement `file-attributes' for Tramp files using a Perl script."
(tramp-message vec 5 "file attributes with perl: %s" localname)
(tramp-maybe-send-script
vec tramp-perl-file-attributes "tramp_perl_file_attributes")
(tramp-send-command-and-read
vec
(format "tramp_perl_file_attributes %s %s"
(tramp-shell-quote-argument localname) id-format)))