?? and-list2.sh
字號:
#!/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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -