mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-21 03:21:16 -03:00
Make line length, wrapping and spacing consistent
This commit is contained in:
@@ -6,15 +6,13 @@ while CONDITION; COMMANDS...; end
|
||||
\endfish
|
||||
|
||||
\subsection while-description Description
|
||||
`while` repeatedly executes `CONDITION`, and if the exit status
|
||||
is 0, then executes `COMMANDS`.
|
||||
|
||||
If the exit status of `CONDITION` is non-zero on the first iteration,
|
||||
`COMMANDS` will not be executed at all.
|
||||
`while` repeatedly executes `CONDITION`, and if the exit status is 0, then executes `COMMANDS`.
|
||||
|
||||
If the exit status of `CONDITION` is non-zero on the first iteration, `COMMANDS` will not be executed at all.
|
||||
|
||||
Use <a href="#begin">`begin; ...; end`</a> for complex conditions; more complex control can be achieved with `while true` containing a <a href="#break">break</a>.
|
||||
|
||||
Use <a href="#begin">`begin; ...; end`</a> for complex conditions; more
|
||||
complex control can be achieved with `while true` containing a
|
||||
<a href="#break">break</a>.
|
||||
|
||||
\subsection while-example Example
|
||||
|
||||
|
||||
Reference in New Issue
Block a user