What is the Bash equivalent of Python's pass statement

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

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

相关标签:
2条回答
  • 2020-12-24 00:28

    You can use : for this.

    0 讨论(0)
  • 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.)

    0 讨论(0)
提交回复
热议问题