Variable: url-nfs-automounter-directory-spec

url-nfs-automounter-directory-spec is a customizable variable defined in url-nfs.el.gz.

Value

"file:/net/%h%f"

Documentation

How to invoke the NFS automounter. Certain % sequences are recognized.

%h -- the hostname of the NFS server
%n -- the port # of the NFS server
%u -- the username to use to authenticate
%p -- the password to use to authenticate
%f -- the filename on the remote server
%% -- a literal %

Each can be used any number of times.

Source Code

;; Defined in /usr/src/emacs/lisp/url/url-nfs.el.gz
(defcustom url-nfs-automounter-directory-spec "file:/net/%h%f"
  "How to invoke the NFS automounter.  Certain % sequences are recognized.

%h -- the hostname of the NFS server
%n -- the port # of the NFS server
%u -- the username to use to authenticate
%p -- the password to use to authenticate
%f -- the filename on the remote server
%% -- a literal %

Each can be used any number of times."
  :group 'url
  :type 'string)