Function: pcomplete/rsh

pcomplete/rsh is an autoloaded and byte-compiled function defined in pcmpl-unix.el.gz.

Signature

(pcomplete/rsh)

Documentation

Complete rsh, which, after the user and hostname, is like xargs.

Source Code

;; Defined in /usr/src/emacs/lisp/pcmpl-unix.el.gz
;;;###autoload
(defun pcomplete/rsh ()
  "Complete `rsh', which, after the user and hostname, is like xargs."
  (pcomplete-opt "l(pcmpl-unix-user-names)")
  (pcmpl-unix-complete-hostname)
  (pcomplete-here (funcall pcomplete-command-completion-function))
  (funcall (or (pcomplete-find-completion-function (pcomplete-arg 1))
               pcomplete-default-completion-function)))