-
Notifications
You must be signed in to change notification settings - Fork 0
/
UNAME.PAS
108 lines (103 loc) · 2.79 KB
/
UNAME.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{ @author: Sylvain Maltais (support@gladir.com)
@created: 2022
@website(https://www.gladir.com/freebsd-0)
@abstract(Target: Turbo Pascal, Free Pascal)
}
Program UNAME;
{$IFDEF WINDOWS}
Uses SysUtils;
{$ENDIF}
Var
I:Integer;
Function OSVersion:String;Begin
OSVersion:='MS-DOS';
{$IFDEF LCLcarbon}
OSVersion := 'Mac OS X';
{$ELSE}
{$IFDEF Linux}
OSVersion := 'GNU/Linux';
{$ELSE}
{$IFDEF UNIX}
OSVersion := 'Unix';
{$ELSE}
{$IFDEF WINDOWS}
Case Win32Platform of
0:Case Win32MajorVersion of
3:OSVersion:='Windows 3';
Else OSVersion:='Windows';
End;
1:Case Win32MajorVersion of
4:Case Win32MinorVersion of
0:OSVersion:='Windows 95';
10:OSVersion:='Windows 98';
90:OSVersion:='Windows ME';
Else OSVersion:='Windows 90X';
End;
End;
2:Begin
Case Win32MajorVersion of
3:Case Win32MinorVersion of
1:OSVersion:='Windows NT 3.1';
50:OSVersion:='Windows NT 3.50';
51:OSVersion:='Windows NT 3.51';
Else OSVersion:='Windows NT 3';
End;
4:OSVersion:='Windows NT 4';
5:Case Win32MinorVersion of
0:OSVersion:='Windows 2000';
1:OSVersion:='Windows XP';
2:OSVersion:='Windows XP 64';
Else OSVersion:='Windows 2000 ou XP';
End;
6:Case Win32MinorVersion of
0:OSVersion:='Windows Vista ou Windows Server 2003';
1:OSVersion:='Windows 7 ou Windows Server 2008 R2';
2:OSVersion:='Windows 8 ou Windows Server 2012';
3:OSVersion:='Windows 8.1 ou Windows Server 2012 R2';
Else OSVersion:='Windows';
End;
Else OSVersion:='Windows';
End;
End;
End;
{$ENDIF}
{$ENDIF}
{$ENDIF}
{$ENDIF}
End;
BEGIN
If(ParamStr(1)='/?')or(ParamStr(1)='--help')or(ParamStr(1)='-h')or
(ParamStr(1)='/h')or(ParamStr(1)='/H')Then Begin
WriteLn('UNAME : Cette commande permet d''afficher des informations sur ',
'le systŠme d''exploitation');
WriteLn;
WriteLn('Syntaxe : UNAME [-h]');
WriteLn;
WriteLn(' -h Affiche l''aide de cette commande');
WriteLn(' -o Affiche le systŠme d''exploitation');
WriteLn(' -p Affiche le microprocesseur');
WriteLn(' --version Affiche la version de la commande');
End
Else
If ParamCount>0Then Begin
For I:=1 to ParamCount do Begin
If(ParamStr(I)='-p')or(ParamStr(I)='--processor')Then Begin
Case Test8086 of
0:Write('8086 ');
1:Write('80286 ');
2:Write('80386 ');
Else Write(Test8086,' ');
End;
End
Else
If(ParamStr(I)='-o')or(ParamStr(I)='--operating-system')Then Begin
Write(OSVersion,' ');
End
Else
If ParamStr(I)='--version'Then Write('Corail Version 1.0 ');
End;
WriteLn;
End
Else
WriteLn('Corail');
END.