mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-08 14:33:00 +08:00
17 lines
494 B
Plaintext
17 lines
494 B
Plaintext
|
|
\section exec exec - Execute command in current process
|
|
|
|
\subsection exec-synopsis Synopsis
|
|
<tt>exec COMMAND [OPTIONS...]</tt>
|
|
|
|
\subsection exec-description Description
|
|
|
|
The \c exec builtin is used to replace the currently running shells
|
|
process image with a new command. On successful completion, exec never
|
|
returns. exec can not be used inside a pipeline.
|
|
|
|
\subsection exec-example Example
|
|
|
|
<tt>exec emacs</tt> starts up the emacs text editor. When emacs exits,
|
|
the session will terminate.
|