“Linux enquanto Shell Loop” Respostas de código

Linux enquanto Shell Loop

while ! [ "${finished}" ]; do
    ...
done
DreamCoder

Linux enquanto Shell Loop

finished=false
while ! $finished; do
    ...
    # At some point
    finished=true
done
DreamCoder

Linux enquanto Shell Loop

while [ "$finished" != "true" ]; do
   ...
done
DreamCoder

Respostas semelhantes a “Linux enquanto Shell Loop”

Perguntas semelhantes a “Linux enquanto Shell Loop”

Mais respostas relacionadas para “Linux enquanto Shell Loop” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código