2006-10-31 15:23:16 +00:00
\section exec exec - execute command in current process
2005-09-20 13:31:55 +00:00
\subsection exec-synopsis Synopsis
2014-08-01 12:25:41 +00:00
\fish{synopsis}
2014-08-01 02:37:32 +00:00
exec COMMAND [OPTIONS...]
\endfish
2005-09-20 13:31:55 +00:00
\subsection exec-description Description
2014-08-19 12:41:23 +00: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 13:31:55 +00:00
\subsection exec-example Example
2014-08-19 12:41:23 +00:00
`exec emacs` starts up the emacs text editor, and exits `fish`. When emacs exits, the session will terminate.