opts4
来自「UNIX+shell范例精解(第4版)代码」· 代码 · 共 16 行
TXT
16 行
#!/bin/ksh# Program opts4# Using getopts -- Fourth try --alias USAGE='print "usage: opts4 [-x] filename " >&2'while getopts :x: arguments docase $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;;esacprint "$OPTIND" # The number of the next argument to be processeddone
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?