1 ;;; em-script.el --- Eshell script files
3 ;; Copyright (C) 1999-2013 Free Software Foundation, Inc.
5 ;; Author: John Wiegley <johnw@gnu.org>
7 ;; This file is part of GNU Emacs.
9 ;; GNU Emacs is free software: you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation, either version 3 of the License, or
12 ;; (at your option) any later version.
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;; GNU General Public License for more details.
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
31 (defgroup eshell-script nil
32 "This module allows for the execution of files containing Eshell
33 commands, as a script file."
34 :tag
"Running script files."
35 :group
'eshell-module
))
39 (defcustom eshell-script-load-hook nil
40 "A list of functions to call when loading `eshell-script'."
41 :version
"24.1" ; removed eshell-script-initialize
43 :group
'eshell-script
)
45 (defcustom eshell-login-script
(expand-file-name "login" eshell-directory-name
)
46 "If non-nil, a file to invoke when starting up Eshell interactively.
47 This file should be a file containing Eshell commands, where comment
48 lines begin with '#'."
50 :group
'eshell-script
)
52 (defcustom eshell-rc-script
(expand-file-name "profile" eshell-directory-name
)
53 "If non-nil, a file to invoke whenever Eshell is started.
54 This includes when running `eshell-command'."
56 :group
'eshell-script
)
60 (defun eshell-script-initialize ()
61 "Initialize the script parsing code."
62 (make-local-variable 'eshell-interpreter-alist
)
63 (setq eshell-interpreter-alist
64 (cons (cons #'(lambda (file args
)
65 (string= (file-name-nondirectory file
)
68 eshell-interpreter-alist
))
69 (make-local-variable 'eshell-complex-commands
)
70 (setq eshell-complex-commands
71 (append '("source" ".") eshell-complex-commands
))
72 ;; these two variables are changed through usage, but we don't want
73 ;; to ruin it for other modules
74 (let (eshell-inside-quote-regexp
75 eshell-outside-quote-regexp
)
76 (and (not eshell-non-interactive-p
)
78 (file-readable-p eshell-login-script
)
80 (list 'eshell-commands
81 (catch 'eshell-replace-command
82 (eshell-source-file eshell-login-script
))) t
))
84 (file-readable-p eshell-rc-script
)
86 (list 'eshell-commands
87 (catch 'eshell-replace-command
88 (eshell-source-file eshell-rc-script
))) t
))))
90 (defun eshell-source-file (file &optional args subcommand-p
)
91 "Execute a series of Eshell commands in FILE, passing ARGS.
92 Comments begin with '#'."
96 (inhibit-point-motion-hooks t
))
97 (goto-char (point-max))
98 (with-silent-modifications
99 ;; FIXME: Why not use a temporary buffer and avoid this
100 ;; "insert&delete" business? --Stef
101 (insert-file-contents file
)
102 (goto-char (point-max))
103 (throw 'eshell-replace-command
106 (list (list 'eshell-command-name
(list 'quote file
))
107 (list 'eshell-command-arguments
109 (let ((cmd (eshell-parse-command (cons here
(point)))))
111 (setq cmd
(list 'eshell-as-subcommand cmd
)))
113 (delete-region here
(point))
114 (goto-char orig
))))))
116 (defun eshell/source
(&rest args
)
117 "Source a file in a subshell environment."
118 (eshell-eval-using-options
120 '((?h
"help" nil nil
"show this usage screen")
123 Invoke the Eshell commands in FILE in a subshell, binding ARGS to $1,
125 (eshell-source-file (car args
) (cdr args
) t
)))
127 (put 'eshell
/source
'eshell-no-numeric-conversions t
)
129 (defun eshell/.
(&rest args
)
130 "Source a file in the current environment."
131 (eshell-eval-using-options
133 '((?h
"help" nil nil
"show this usage screen")
136 Invoke the Eshell commands in FILE within the current shell
137 environment, binding ARGS to $1, $2, etc.")
138 (eshell-source-file (car args
) (cdr args
))))
140 (put 'eshell
/.
'eshell-no-numeric-conversions t
)
145 ;; generated-autoload-file: "esh-groups.el"
148 ;;; em-script.el ends here