标签: bash
if date -d "2012010123"。如何让相反的事情发生?换句话说,如果退出代码为1,如何运行if语句?
if date -d "2012010123"
答案 0 :(得分:7)
否定它:
if ! date -d "2012010123"; then # do something here (date returned with non-zero exit code) fi
引自help test:
help test
! EXPR True if expr is false.