getopts5.sub
来自「android-w.song.android.widget」· SUB 代码 · 共 51 行
SUB
51 行
#!/local/bin/bash#Time-stamp: <95/06/07 07:40:40 hrue@imf.unit.no>getop () { local OPTIND local OPTERR=1 echo getop: OPTERR=$OPTERR while getopts ab arg "$@"; do case $arg in a) echo a here ;; b) echo b here ;; :|?|*) echo something else here ;; esac done echo getop: OPTIND=$OPTIND}OPTIND=OPTERR=0echo OPTERR=$OPTERRwhile getopts ab arg; do case $arg in a) echo a here ;; b) echo b here ;; :|?|*) echo something else here ;; esacdoneecho OPTIND=$OPTINDgetop "$@" -d -eecho OPTIND=$OPTINDecho OPTERR=$OPTERR
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?