1 03/12/76 edit move, edit mov 2 3 Function: The move request relocates specified lines within the 4 current file to a given location. Relocated lines are placed after a 5 specified line number and assigned new line numbers by incrementing 6 that value by one. For example, if three lines are moved to line 100, 7 they will be given the line numbers 101, 102, and 103. If a sequence 8 of lines is moved so that their numbers would not fit between the line 9 specified and the line originally specified, succeeding lines are 10 resequenced with an increment of one until there is no overlap. 11 12 13 Syntax: edit move line1 line2 14 15 16 where: 17 18 1. line1 is a line or range of lines to be moved. 19 20 2. line2 is the line after which line1 will be inserted. 21 22 23 Example: 24 25 ! new newfile 26 ready 1300 27 28 29 ! 10 ten 30 ! 20 twenty 31 ! 30 thirty 32 ! 40 forty 33 34 35 ! edit move 40 20 36 ready 1300 37 38 39 ! lisn 40 10 ten 41 20 twenty 42 21 forty 43 30 thirty 44 ready 1301 45 46 47 ! 3 three 48 ! 7 seven 49 ! 9 nine 50 ! 10 ten 51 ! 11 eleven 52 ! edit move 8-11 21 53 ready 1301 54 55 56 ! lisn 57 3 three 58 7 seven 59 20 twenty 60 21 forty 61 22 nine 62 23 ten 63 24 eleven 64 30 thirty 65 ready 1301