📄 opts3
字号:
#!/bin/ksh# Program opts3# Using getopts -- Third try --while getopts :d optionsdo case $options in d) print -R "-d is the ON switch";; +d) print -R "+d is the OFF switch";; \?) print $OPTARG is not a valid option;; esacdone# Need the -R option with print or the shell tries to use -d as a# print option
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -