Function: eshell/.

eshell/. is a byte-compiled function defined in em-script.el.gz.

Signature

(eshell/\. &rest ARGS)

Documentation

Source a file in the current environment.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/em-script.el.gz
(defun eshell/. (&rest args)
  "Source a file in the current environment."
  (eshell-eval-using-options
   "." args
   '((?h "help" nil nil "show this usage screen")
     :show-usage
     :usage "FILE [ARGS]
Invoke the Eshell commands in FILE within the current shell
environment, binding ARGS to $1, $2, etc.")
   (eshell-source-file (car args) (cdr args))))