opts4
来自「《PC数据采集》源代码」· 代码 · 共 19 行
TXT
19 行
#!/bin/ksh# Script name: opts4# Example 10.140# Using getopts -- Fourth try --alias USAGE='print "usage: opts4 [-x] filename " >&2'while getopts :x: arguments do case $arguments in x) print "$OPTARG is the name of the argument ";; :) print "Please enter an argument after the -x option" >&2 USAGE ;; \?) print "$OPTARG is not a valid option." >&2 USAGE;; esac print "$OPTIND" # The number of the next argument to be processeddone
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?