📄 l7.1a
字号:
#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", etc.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,so "ls memo.a[bc]" is the abbreviation for"ls memo.ab memo.ac".You can have as many characters as needed between [ and ].Type the "ls" command that recognizes a1cat a2cat a3catand no other files. Then type "ready".#create a1bat#create a1cat#create a2cat#create a3cat#create a4cat#create acat#copyin#user#uncopyin#match ls a[123]cat#match ls a[1-3]cat#match ls a1cat a2cat a3catYou were supposed to use a[123]cat.Imagine doing it your way with 10 files.#log#next8.1a 108.2a 5
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -