Update copyright notices for 2013.
[emacs.git] / lisp / eshell / em-script.el
blob711b2e214688121dd066602cf91d1adf5a64546b
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/>.
22 ;;; Commentary:
24 ;;; Code:
26 (require 'eshell)
27 (require 'esh-opt)
29 ;;;###autoload
30 (progn
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))
37 ;;; User Variables:
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
42 :type 'hook
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 '#'."
49 :type 'file
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'."
55 :type 'file
56 :group 'eshell-script)
58 ;;; Functions:
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 '((lambda (file)
65 (string= (file-name-nondirectory file)
66 "eshell")) . eshell/source)
67 eshell-interpreter-alist))
68 (make-local-variable 'eshell-complex-commands)
69 (setq eshell-complex-commands
70 (append '("source" ".") eshell-complex-commands))
71 ;; these two variables are changed through usage, but we don't want
72 ;; to ruin it for other modules
73 (let (eshell-inside-quote-regexp
74 eshell-outside-quote-regexp)
75 (and (not eshell-non-interactive-p)
76 eshell-login-script
77 (file-readable-p eshell-login-script)
78 (eshell-do-eval
79 (list 'eshell-commands
80 (catch 'eshell-replace-command
81 (eshell-source-file eshell-login-script))) t))
82 (and eshell-rc-script
83 (file-readable-p eshell-rc-script)
84 (eshell-do-eval
85 (list 'eshell-commands
86 (catch 'eshell-replace-command
87 (eshell-source-file eshell-rc-script))) t))))
89 (defun eshell-source-file (file &optional args subcommand-p)
90 "Execute a series of Eshell commands in FILE, passing ARGS.
91 Comments begin with '#'."
92 (interactive "f")
93 (let ((orig (point))
94 (here (point-max))
95 (inhibit-point-motion-hooks t))
96 (goto-char (point-max))
97 (with-silent-modifications
98 ;; FIXME: Why not use a temporary buffer and avoid this
99 ;; "insert&delete" business? --Stef
100 (insert-file-contents file)
101 (goto-char (point-max))
102 (throw 'eshell-replace-command
103 (prog1
104 (list 'let
105 (list (list 'eshell-command-name (list 'quote file))
106 (list 'eshell-command-arguments
107 (list 'quote args)))
108 (let ((cmd (eshell-parse-command (cons here (point)))))
109 (if subcommand-p
110 (setq cmd (list 'eshell-as-subcommand cmd)))
111 cmd))
112 (delete-region here (point))
113 (goto-char orig))))))
115 (defun eshell/source (&rest args)
116 "Source a file in a subshell environment."
117 (eshell-eval-using-options
118 "source" args
119 '((?h "help" nil nil "show this usage screen")
120 :show-usage
121 :usage "FILE [ARGS]
122 Invoke the Eshell commands in FILE in a subshell, binding ARGS to $1,
123 $2, etc.")
124 (eshell-source-file (car args) (cdr args) t)))
126 (put 'eshell/source 'eshell-no-numeric-conversions t)
128 (defun eshell/. (&rest args)
129 "Source a file in the current environment."
130 (eshell-eval-using-options
131 "." args
132 '((?h "help" nil nil "show this usage screen")
133 :show-usage
134 :usage "FILE [ARGS]
135 Invoke the Eshell commands in FILE within the current shell
136 environment, binding ARGS to $1, $2, etc.")
137 (eshell-source-file (car args) (cdr args))))
139 (put 'eshell/. 'eshell-no-numeric-conversions t)
141 (provide 'em-script)
143 ;; Local Variables:
144 ;; generated-autoload-file: "esh-groups.el"
145 ;; End:
147 ;;; em-script.el ends here