Function: tramp-fuse-get-fusermount

tramp-fuse-get-fusermount is a byte-compiled function defined in tramp-fuse.el.gz.

Signature

(tramp-fuse-get-fusermount)

Documentation

Determine the local fusermount command.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp-fuse.el.gz
(defun tramp-fuse-get-fusermount ()
  "Determine the local `fusermount' command."
  ;; We use key nil for local connection properties.
  (with-tramp-connection-property nil "fusermount"
    (or (executable-find "fusermount3")
	(executable-find "fusermount"))))