What is the Bash equivalent of Python's pass statement

前端 未结 2 1691
别跟我提以往
别跟我提以往 2020-12-24 00:05

Is there a Bash equivalent to the Python\'s pass statement?

2条回答
  •  無奈伤痛
    2020-12-24 00:49

    true is a command that successfully does nothing.

    (false would, in a way, be the opposite: it doesn't do anything, but claims that a failure occurred.)

提交回复
热议问题