1 03/12/76 edit insert, edit ins
2
3 Function: The insert request inserts files at given points in a
4 specified file. The final result becomes the current file and is
5 resequenced beginning with line number 100 and incremented by 10 to
6 derive subsequent numbers. For BASIC programs if the system name is
7 basic or dbasic, internal references to changed line numbers are also
8 changed.
9
10
11 Syntax: edit insert file1 file2 line1 file3 line2 ... fileN lineN
12
13
14 where:
15
16 1. file1 is the file into which information is inserted.
17
18 2. file2...fileN are files to be inserted.
19
20 3. line1...lineN are line numbers in file1 after which the
21 associated files are to be inserted.
22
23
24 Example:
25
26 ! new file1^H
27 ready 1300
28
29
30 ! 10 This is
31 ! 20 new text
32 ! 30 and this
33 ! save
34 ready 1300
35
36
37 ! new file2^H
38 ready 1300
39
40
41 ! 10 to be inserted
42 ! 20 in file1^H
43 ! save
44 ready 1301
45
46
47 ! new file3^H
48 ready 1301
49
50
51 ! 10 is also
52 ! 20 inserted
53 ! save
54 ready 1301
55
56
57 edit insert file1 file2 20 file3 30
58 ready 1301
59
60
61
62 ! lisn
63 100 This is
64 110 new text
65 120 to be inserted
66 130 in file1^H
67 140 and this
68 150 is also
69 160 inserted
70 ready 1302