diff options
author | Jim Porter <jporterbugs@gmail.com> | 2022-07-09 10:34:31 -0700 |
---|---|---|
committer | Jim Porter <jporterbugs@gmail.com> | 2022-09-04 15:15:01 -0700 |
commit | 1be925faa1065af5754fc11914b56ae98dfb2a83 (patch) | |
tree | 6003dde699588471a1a801705c3ea28bf272ac9f /doc/misc/eshell.texi | |
parent | 5af5ed6c6271a452bf37afa0e7349838960d446a (diff) | |
download | emacs-1be925faa1065af5754fc11914b56ae98dfb2a83.tar.gz emacs-1be925faa1065af5754fc11914b56ae98dfb2a83.tar.bz2 emacs-1be925faa1065af5754fc11914b56ae98dfb2a83.zip |
Simplify Eshell handle functions and add tests/documentation
* lisp/eshell/esh-arg.el (eshell-parse-argument-hook): Explain how to
use 'eshell-finish-arg'.
* lisp/eshell/esh-io.el (eshell-create-handles): Only call
'eshell-get-target' for stderr if necessary.
(eshell-protect-handles): Use 'dotimes'.
(eshell-set-output-handle): Pass HANDLES and fix an edge case with
setting a duplicate TARGET.
* test/lisp/eshell/eshell-tests-helpers.el (eshell-with-temp-buffer):
New macro.
* test/lisp/eshell/esh-cmd-tests.el (esh-cmd-test/quoted-lisp-form)
(esh-cmd-test/backquoted-lisp-form)
(esh-cmd-test/backquoted-lisp-form/splice): New tests.
* test/lisp/eshell/eshell-tests.el (eshell-test/redirect-buffer)
(eshell-test/redirect-buffer-escaped): Move to...
* test/lisp/eshell/esh-io-tests.el: ... here, and add other I/O tests.
* doc/misc/eshell.texi (Arguments): Add documentation for special
argument types.
(Input/Output): Expand documentation for redirection and pipelines.
Diffstat (limited to 'doc/misc/eshell.texi')
-rw-r--r-- | doc/misc/eshell.texi | 160 |
1 files changed, 132 insertions, 28 deletions
diff --git a/doc/misc/eshell.texi b/doc/misc/eshell.texi index 13f13163dd7..0c98d2860e9 100644 --- a/doc/misc/eshell.texi +++ b/doc/misc/eshell.texi @@ -256,7 +256,6 @@ as an argument will ``spread'' the elements into multiple arguments: @end example @subsection Quoting and escaping - As with other shells, you can escape special characters and spaces with by prefixing the character with a backslash (@code{\}), or by surrounding the string with apostrophes (@code{''}) or double quotes @@ -268,6 +267,40 @@ When using expansions (@pxref{Expansion}) in an Eshell command, the result may potentially be of any data type. To ensure that the result is always a string, the expansion can be surrounded by double quotes. +@subsection Special argument types +In addition to strings and numbers, Eshell supports a number of +special argument types. These let you refer to various other Emacs +Lisp data types, such as lists or buffers. + +@table @code + +@item #'@var{lisp-form} +This refers to the quoted Emacs Lisp form @var{lisp-form}. Though +this looks similar to the ``sharp quote'' syntax for functions +(@pxref{Special Read Syntax, , , elisp, The Emacs Lisp Reference +Manual}), it instead corresponds to @code{quote} and can be used for +any quoted form.@footnote{Eshell would interpret a bare apostrophe +(@code{'}) as the start of a single-quoted string.} + +@item `@var{lisp-form} +This refers to the backquoted Emacs Lisp form @var{lisp-form} +(@pxref{Backquote, , , elisp, The Emacs Lisp Reference Manual}). As +in Emacs Lisp, you can use @samp{,} and @samp{,@@} to refer to +non-constant values. + +@item #<buffer @var{name}> +@itemx #<@var{name}> +Return the buffer named @var{name}. This is equivalent to +@samp{$(get-buffer-create "@var{name}")} (@pxref{Creating Buffers, , , +elisp, The Emacs Lisp Reference Manual}). + +@item #<process @var{name}> +Return the process named @var{name}. This is equivalent to +@samp{$(get-process "@var{name}")} (@pxref{Process Information, , , +elisp, The Emacs Lisp Reference Manual}). + +@end table + @node Built-ins @section Built-in commands Several commands are built-in in Eshell. In order to call the @@ -1560,6 +1593,13 @@ Reverses the order of a list of values. Since Eshell does not communicate with a terminal like most command shells, IO is a little different. +@menu +* Visual Commands:: +* Redirection:: +* Pipelines:: +@end menu + +@node Visual Commands @section Visual Commands If you try to run programs from within Eshell that are not line-oriented, such as programs that use ncurses, you will just get @@ -1592,40 +1632,104 @@ program exits, customize the variable @code{eshell-destroy-buffer-when-process-dies} to a non-@code{nil} value; the default is @code{nil}. +@node Redirection @section Redirection -Redirection is mostly the same in Eshell as it is in other command -shells. The output redirection operators @code{>} and @code{>>} as -well as pipes are supported, but there is not yet any support for -input redirection. Output can also be redirected to buffers, using -the @code{>>>} redirection operator, and Elisp functions, using -virtual devices. - -The buffer redirection operator, @code{>>>}, expects a buffer object -on the right-hand side, into which it inserts the output of the -left-hand side. e.g., @samp{echo hello >>> #<buffer *scratch*>} -inserts the string @code{"hello"} into the @file{*scratch*} buffer. -The convenience shorthand variant @samp{#<@var{buffer-name}>}, as in -@samp{#<*scratch*>}, is also accepted. - -@code{eshell-virtual-targets} is a list of mappings of virtual device -names to functions. Eshell comes with two virtual devices: -@file{/dev/kill}, which sends the text to the kill ring, and -@file{/dev/clip}, which sends text to the clipboard. +Redirection in Eshell is similar to that of other command shells. You +can use the output redirection operators @code{>} and @code{>>}, but +there is not yet any support for input redirection. In the cases +below, @var{fd} specifies the file descriptor to redirect; if not +specified, file descriptor 1 (standard output) will be used by +default. + +@table @code + +@item > @var{dest} +@itemx @var{fd}> @var{dest} +Redirect output to @var{dest}, overwriting its contents with the new +output. + +@item >> @var{dest} +@itemx @var{fd}>> @var{dest} +Redirect output to @var{dest}, appending it to the existing contents +of @var{dest}. + +@item >>> @var{buffer} +@itemx @var{fd}>>> @var{buffer} +Redirect output to @var{dest}, inserting it at the current mark if +@var{dest} is a buffer, at the beginning of the file if @var{dest} is +a file, or otherwise behaving the same as @code{>>}. + +@end table + +Eshell supports redirecting output to several different types of +targets: + +@itemize @bullet + +@item +files, including virtual targets (see below); +@item +buffers (@pxref{Buffers, , , elisp, GNU Emacs Lisp Reference Manual}); + +@item +markers (@pxref{Markers, , , elisp, GNU Emacs Lisp Reference Manual}); + +@item +processes (@pxref{Processes, , , elisp, GNU Emacs Lisp Reference +Manual}); and + +@item +symbols (@pxref{Symbols, , , elisp, GNU Emacs Lisp Reference Manual}). + +@end itemize + +@subsection Virtual Targets +Virtual targets are mapping of device names to functions. Eshell +comes with four virtual devices: + +@table @file + +@item /dev/null +Does nothing with the output passed to it. + +@item /dev/eshell +Writes the text passed to it to the display. + +@item /dev/kill +Adds the text passed to it to the kill ring. + +@item /dev/clip +Adds the text passed to it to the clipboard. + +@end table + +@vindex eshell-virtual-targets You can, of course, define your own virtual targets. They are defined -by adding a list of the form @samp{("/dev/name" @var{function} @var{mode})} to -@code{eshell-virtual-targets}. The first element is the device name; -@var{function} may be either a lambda or a function name. If -@var{mode} is @code{nil}, then the function is the output function; if it is -non-@code{nil}, then the function is passed the redirection mode as a -symbol--@code{overwrite} for @code{>}, @code{append} for @code{>>}, or -@code{insert} for @code{>>>}--and the function is expected to return -the output function. +by adding a list of the form @samp{("/dev/name" @var{function} +@var{mode})} to @code{eshell-virtual-targets}. The first element is +the device name; @var{function} may be either a lambda or a function +name. If @var{mode} is @code{nil}, then the function is the output +function; if it is non-@code{nil}, then the function is passed the +redirection mode as a symbol--@code{overwrite} for @code{>}, +@code{append} for @code{>>}, or @code{insert} for @code{>>>}--and the +function is expected to return the output function. The output function is called once on each line of output until @code{nil} is passed, indicating end of output. -@section Running Shell Pipelines Natively +@node Pipelines +@section Pipelines +As with most other shells, Eshell supports pipelines to pass the +output of one command the input of the next command. You can pipe +commands to each other using the @code{|} operator. For example, + +@example +~ $ echo hello | rev +olleh +@end example + +@subsection Running Shell Pipelines Natively When constructing shell pipelines that will move a lot of data, it is a good idea to bypass Eshell's own pipelining support and use the operating system shell's instead. This is especially relevant when |