Rechercher une page de manuel
while
Langue: en
Version: 148077 (fedora - 04/07/09)
Section: 1 (Commandes utilisateur)
Sommaire
NAME
while - perform a command multiple timesSynopsis
while CONDITION; COMMANDS...; endDescription
The while builtin causes fish to continually execute CONDITION and execute COMMANDS as long as CONDITION returned with status 0. If CONDITION is false on the first time, COMMANDS will not be executed at all. Hints: use begin; ...; end for complex conditions; more complex control can be achieved with while true containing a break.Example
while test -f foo.txt; echo file exists; sleep 10; endcauses fish to print the line 'file exists' at 10 second intervals as long as the file foo.txt exists.
Contenus ©2006-2024 Benjamin Poulain
Design ©2006-2024 Maxime Vantorre