10.goto

  • 可直接執行某段section,例如:

              if %PROCESSOR_ARCHITECTURE% == x86 (
                  goto :x86
              ) else (
                  goto :x64
              )
    
              :x86
                  :: do something
    
              :x64
    
                  :: do something

Last updated

Was this helpful?