Bell 32V development
[unix-history] / usr / lib / learn / files / L8.1a
CommitLineData
fed84c9b
TL
1#print
2Sometimes you want to request one of a limited
3range of characters. This is possible with an
4expression like
5 [a-d]
6which matches a, b, c, or d. Thus, to take
7some combinations
8 ab[c-f]
9matches
10 abc, abd, abe, abf
11Try typing "ls a[0-9]"
12and see how many files it matches. Type that
13number in the form "answer N".
14#create a0
15#create a1
16#create a5
17#create ax
18#copyin
19#user
20#uncopyin
21#match 3
22#log
23#next
249.1a 10
259.2a 4