and-list2.sh

来自「Shall高级编程」· Shell 代码 · 共 17 行

SH
17
字号
#!/bin/bashARGS=1        # Number of arguments expected.E_BADARGS=65  # Exit value if incorrect number of args passed.test $# -ne $ARGS && \echo "Usage: `basename $0` $ARGS argument(s)" && exit $E_BADARGS#  If condition 1 tests true (wrong number of args passed to script),#+ then the rest of the line executes, and script terminates.# Line below executes only if the above test fails.echo "Correct number of arguments passed to this script."exit 0# To check exit value, do a "echo $?" after script termination.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?