l7.2b
来自「<B>Digital的Unix操作系统VAX 4.2源码</B>」· 2B 代码 · 共 33 行
2B
33 行
#printYou can put any number of characters between [..]characters, as in [abcdef]which matches any of the six letters from a to f;and you can put something like that anywhere in a patternfor a file name. For example, ls [abcd]xmatches any of ax, bx, cx, dxYou can also combine this with other operators such as* or ?. For example, ls [ab]?matches all two-letter names beginning with a or b.How would you ask for all names, of any length, endingin 1 2 or 3?You can experiment in this directory; eventually,type the "ls" command you decide on followed by "ready".#create a1#create a12#create a1a#create a2#create a23#create aa1#create abc1#copyin#user#uncopyin#match ls *[123]#log#next8.1a 10
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?