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-19 20:41:23 +08:00
`exec` replaces the currently running shell with a new command. On successful completion, `exec` never returns. `exec` cannot be used inside a pipeline.
2005-09-20 21:31:55 +08:00
\subsection exec-example Example
2014-08-19 20:41:23 +08:00
`exec emacs` starts up the emacs text editor, and exits `fish`. When emacs exits, the session will terminate.