blob: ab451ec74bfee634ac6f7e90b329495a658d803b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#print
When you want to match one of a few specific characters,
and not anything, the pattern is similar to that used in
file names. That is,
[abc]
matches the letters 'a', 'b', or 'c', but nothing
else. Try this sequence and note what happens:
ed lines
1,$p
1s/[123]/9/
2s/[123]/9/
1,$p
w
q
ready
#create Ref
599
948
#create lines
519
348
#user
#cmp lines Ref
#log
#next
33.2b 5
|