Tartalom
Adatok
Licenc: GNU GPLv3+
Verziószám: GNU Bash 5
Fejlesztő/tulajdonos: Free Software Foundation Inc.
Rövid leírás:
A continue beépített Bash parancs manual oldala és súgója. A continue parancs folytatja a következő iterációt a for, while, until vagy select ciklusokban. Ha meg van adva az n paraméter, akkor az n-edik ciklustól folytatja a futást. Ilyenkor n-nek 1-nél nagyobbnak kell lennie.
Man oldal kimenet
man bash
[...] continue [n] Resume the next iteration of the enclosing for, while, until, or select loop. If n is specified, resume at the nth enclosing loop. n must be ≥ 1. If n is greater than the number of enclosing loops, the last enclosing loop (the ``top-level'' loop) is resumed. The return value is 0 unless n is not greater than or equal to 1. [...]
Súgó kimenet
continue --help
continue: continue [n] A for, while vagy until ciklus újrakezdése. A következő iterációtól folytatja a FOR, WHILE vagy UNTIL ciklust. Ha N meg van adva, akkor N egymásba ágyazott ciklusból lép ki. Kilépési kód: A kilépési kód 0, ha N >= 1.
Kapcsolódó tartalom
- 9 megtekintés