📄 opts4
字号:
#!/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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -