BSD 3 development
[unix-history] / usr / lib / learn / files / L8.2c
CommitLineData
fd15fd37
BJ
1#print
2As an example more complicated than you will
3probably ever need, consider
4 ?[a-c]*
5which matches what? Well the first character
6can be anything; the second must be a, b, or c; and
7nothing matters thereafter. So it matches
8 aaa
9 abc
10 xa
11 3c25
12but not
13 a
14 ghi
15and so forth.
16Will it match
17 %a25
18Try some experiments, then type yes or no.
19#create %a25
20#copyin
21#user
22#uncopyin
23#match yes
24#log
25#next
269.1a 10
279.2a 4