l7.2a

来自「<B>Digital的Unix操作系统VAX 4.2源码</B>」· 2A 代码 · 共 31 行

2A
31
字号
#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  ls memo.a[bc]will list exactly "memo.ab" and "memo.ac" if present.How many of the files  xya, xyb, xyc, xydexist in this directory?Type "answer N" where N is the number.#create xyb#create xyc#create xye#create xyf#create xy1#copyin#user#uncopyin#match 2#log#next7.2b 10

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?