2006-10-31 23:23:16 +08:00
|
|
|
\section exec exec - execute command in current process
|
2005-09-20 21:31:55 +08:00
|
|
|
|
|
|
|
\subsection exec-synopsis Synopsis
|
2014-08-01 20:25:41 +08:00
|
|
|
\fish{synopsis}
|
2014-08-01 10:37:32 +08:00
|
|
|
exec COMMAND [OPTIONS...]
|
|
|
|
\endfish
|
2005-09-20 21:31:55 +08:00
|
|
|
|
|
|
|
\subsection exec-description Description
|
|
|
|
|
2014-08-01 10:37:32 +08:00
|
|
|
`exec` replaces the currently running shell with a new command.
|
|
|
|
On successful completion, `exec` never returns. `exec` cannot be used
|
Help cleanup
Large list of changes, including formatting and typos for most commands.
More substantive changes have been made to alias, bind, block, break,
builtin, case, cd, commandline, count, else, emit, fish_config, funced,
function, functions, history, math, mimedb, nextd, not, popd, prevd,
pushd, pwd, random, read, set, set_color, switch, test, trap, type,
ulimit, umask, and while.
2013-05-12 15:56:01 +08:00
|
|
|
inside a pipeline.
|
2005-09-20 21:31:55 +08:00
|
|
|
|
|
|
|
\subsection exec-example Example
|
|
|
|
|
2014-08-01 10:37:32 +08:00
|
|
|
`exec emacs` starts up the emacs text editor, and exits `fish`.
|
Help cleanup
Large list of changes, including formatting and typos for most commands.
More substantive changes have been made to alias, bind, block, break,
builtin, case, cd, commandline, count, else, emit, fish_config, funced,
function, functions, history, math, mimedb, nextd, not, popd, prevd,
pushd, pwd, random, read, set, set_color, switch, test, trap, type,
ulimit, umask, and while.
2013-05-12 15:56:01 +08:00
|
|
|
When emacs exits, the session will terminate.
|