-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMORE.PAS
57 lines (53 loc) · 1.07 KB
/
MORE.PAS
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{ @author: Sylvain Maltais ([email protected])
@created: 2021
@website(https://www.gladir.com/linux-0)
@abstract(Target: Free Pascal, Turbo Pascal)
}
Program MORE(Input,Output);
Uses Crt,DOS;
Var
I:Byte;
S:String;
FileRead:Text;
Regs:Registers;
BEGIN
If ParamStr(1)='/?'Then Begin
WriteLn('MORE : Cette commande permet de recevoir l''entree puis ',
'l''affiche sur un peripherique de sortie un ecran a la fois.');
WriteLn;
WriteLn('Syntaxe : MORE source');
End
Else
If ParamCount>0Then Begin
Assign(FileRead,ParamStr(1));
Reset(FileRead);
I:=0;
While Not(EOF(FileRead))do Begin
Inc(I);
ReadLn(FileRead,S);
WriteLn(S);
If I=Hi(WindMax)Then Begin
WriteLn(Output,'Presse une touche pour continuer...');
ReadKey;
I:=0;
End;
End;
Close(FileRead);
End
Else
Begin
I:=0;
Repeat
Inc(I);
ReadLn(Input,S);
WriteLn(Output,S);
If I=Hi(WindMax)Then Begin
WriteLn(Output,'Presse une touche pour continuer...');
Regs.AH := $0C;
Regs.AL := $07;
MsDos(Regs);
I:=0;
End;
Until Eof;
End;
END.