-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathENV.PAS
47 lines (43 loc) · 1.06 KB
/
ENV.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
{ @author: Sylvain Maltais ([email protected])
@created: 2022
@website(https://www.gladir.com/linux-0)
@abstract(Target: Turbo Pascal, Free Pascal)
}
Program ENV;
Uses Crt,DOS;
Var
Pause:Boolean;
I,P:Integer;
FirstParam:String;
BEGIN
Pause:=False;
FirstParam:=ParamStr(1);
If(FirstParam='/?')or(FirstParam='--help')or(FirstParam='-h')or
(FirstParam='/h')or(FirstParam='/H')Then Begin
WriteLn('ENV Cette commande permet de fixer ou demander le contenu des ',
'variables d''environnement du systeme d''exploitation');
WriteLn;
WriteLn('Syntaxe:');
WriteLn;
WriteLn('ENV [/?] [-p]');
WriteLn;
WriteLn(' /? Ce parametre permet d''afficher l''aide sur cette commande');
WriteLn(' -p Ce parametre permet d''effectuer une pause entre chaque page');
Exit;
End
Else
If(FirstParam='-p')Then Pause:=True;
P:=0;
For I:=0to EnvCount do Begin
WriteLn(EnvStr(I));
If(Pause)Then Begin
Inc(P);
If P=Hi(WindMax)Then Begin
Write('Presse une touche pour continuer...');
ReadKey;
WriteLn;
P:=0;
End;
End;
End;
END.