1
0
Fork 0
qemu/roms/u-boot/doc/usage/exit.rst
Daniel Baumann ea34ddeea6
Adding upstream version 1:10.0.2+ds.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 14:27:05 +02:00

40 lines
674 B
ReStructuredText

exit command
============
Synopsis
--------
::
exit
Description
-----------
The exit command terminates a script started via the run or source command.
If scripts are nested, only the innermost script is left.
::
=> setenv inner 'echo entry inner; exit; echo inner done'
=> setenv outer 'echo entry outer; run inner; echo outer done'
=> run outer
entry outer
entry inner
outer done
=>
When executed outside a script a warning is written. Following commands are not
executed.
::
=> echo first; exit; echo last
first
exit not allowed from main input shell.
=>
Return value
------------
$? is always set to 0 (true).