How to check the exit status using an if statement

后端 未结 7 1674
北荒
北荒 2020-11-29 16:27

I was wondering what would be the best way to check the exit status in an if statement in order to echo a specific output.

I\'m thinking of it being

         


        
7条回答
  •  孤街浪徒
    2020-11-29 16:47

    Every command that runs has an exit status.

    That check is looking at the exit status of the command that finished most recently before that line runs.

    If you want your script to exit when that test returns true (the previous command failed) then you put exit 1 (or whatever) inside that if block after the echo.

    That being said if you are running the command and wanting to test its output using the following is often more straight-forward.

    if some_command; then
        echo command returned true
    else
        echo command returned some error
    fi
    

    Or to turn that around use ! for negation

    if ! some_command; then
        echo command returned some error
    else
        echo command returned true
    fi
    

    Note though that neither of those cares what the error code is. If you know you only care about a specific error code then you need to check $? manually.

提交回复
热议问题