Function: eshell-get-path

eshell-get-path is a byte-compiled function defined in esh-util.el.gz.

Signature

(eshell-get-path)

Documentation

Return $PATH as a list.

Add the current directory on MS-Windows.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-util.el.gz
(defun eshell-get-path ()
  "Return $PATH as a list.
Add the current directory on MS-Windows."
  (eshell-parse-colon-path
   (if (eshell-under-windows-p)
       (concat "." path-separator eshell-path-env)
     eshell-path-env)))