1 03/12/76 edit suffix, edit suf
2
3 Function: The suffix request inserts a given character string
4 immediately following each occurrence of an existing character string.
5 Line numbers are not affected.
6
7
8 Syntax: edit suffix /old_string/new_string/line1 line2 ... lineN
9
10
11 where:
12
13 1. / is any delimiter except blank or tab; the delimiter
14 character cannot be a character in either
15 old_string or new_string.
16
17 2. old_string is the string to be located.
18
19 3. new_string is the string to be inserted.
20
21 4. linei is a single line number or range of lines; each
22 linei specifies the bounds within which the
23 substitution is to occur.
24
25
26 Example:
27
28 ! lisn
29
30 100 I am
31 110 go
32 120 to the
33 130 store
34 ready 1300
35
36
37 ! edit suffix /go/ing/110
38 ready 1300
39
40
41 ! lisn 110
42 110 going
43 ready 1300