批處理文件中的errorlevel用法

批處理文件中的errorlevel用法:sql

1、IF-ERRORLEVELide

創建report.bat,內容以下:ip

@echo off
sqlplus %2/%3@%1@report.sqlget

::errorlevel indicate whether sql script is processed successfully.
if errorlevel 4 echo REPORTING[ERR]: Error 4 occurs & goto exit
if errorlevel 3 echo REPORTING[ERR]: Error 3 occurs & goto exit
if errorlevel 2 echo REPORTING[ERR]: Error 2 occurs & goto exit
if errorlevel 1 echo REPORTING[ERR]: Error 1 occurs & goto exit
if errorlevel 0 echo REPORTING[INFO]: Reports have been generated successfully & goto exitit

:exitclass

不少DOS程序在運行結束後會返回一個數字值用來表示程序運行的結果(或者狀態),經過if errorlevel命令能夠判斷程序的返回值,根據不一樣的返回值來決定執行不一樣的命令sed

注意:if errorlevel 的比較方式是「大於或等於」。若是返回值大於或等於指定的數字,則條件成立,運行命令。因此返回值必須按照從大到小的順序排列。程序

相關文章
相關標籤/搜索