📄 l7.3a
字号:
#printSometimes ? is too flexible, and youonly want to allow a few characters. For example,you might want to abbreviate ls memo.ab memo.acwithout picking up "memo.ad", "!"memo.ae", and so forth.You can match one of a set of particular characters by putting them in brackets "[]" in the list you use with "ls".For example, [bc]matches either b or c but no other letters.Thus the command ls memo.a[bc]would match "memo.ab", "memo.ac", and nothing else.Try that command in this directory: type a plain"ls" first, and then "ls memo.a[bc]".How many files does "ls memo.a[bc]" match?Type "answer N" where N is the number.#create memo.ab#create memo.abc#create memo.bc#copyin#user#uncopyin#match 1#log#next7.3b 2
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -