DOS/Goto
< DOS
Introduction
modifierCommande interne DOS, elle est utilisée dans un batch pour poursuivre l'exécution au label spécifié.
Utilisation
modifierGOTO label
Exemple
modifierGOTO plusloin ECHO Instruction sautée :plusloin ECHO Instruction interprétée
Terminer un batch ou une sous-routine
modifierPour sortir du batch ou d'une sous-routine, le label spécial :eof
peut être utilisé :
ECHO Instruction interprétée GOTO :eof ECHO Instruction 1 sautée ECHO Instruction 2 sautée