-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathKSH.PAS
308 lines (259 loc) · 6.17 KB
/
KSH.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
{ @author: Sylvain Maltais ([email protected])
@created: 2021
@website(https://www.gladir.com/linux-0)
@abstract(Target: Turbo Pascal, Free Pascal)
}
Program KSH;
Uses Crt,DOS;
Const
CommandList:Array[0..37]of String[16]=(
'alias','bg','bind','break','buildin','cd','command','continue',
'echo','eval','exec','exit','export','false','fc','fg',
'getops','hash','jobs','kill','let','print','pwd','read',
'readonly','return','set','test','times','trap','true','typeset',
'ulimit','umask','unalias','unset','wait','whence'
);
Var
CommandFound,Terminated:Boolean;
CmdStr:String;
CurrCommand,ParamList:String;
I,J:Byte;
Function TrimL(S:String):String;
Var
I:Byte;
Begin
For I:=1to Length(S)do Begin
If S[I]<>' 'Then Begin
TrimL:=Copy(S,I,255);
Exit;
End;
End;
TrimL:=S;
End;
Procedure ChangeChar(Var Str:String;OldChar,NewChar:Char);
Var
I:Byte;
Begin
For I:=1 to Length(Str)do Begin
If Str[I]=OldChar Then Str[I]:=NewChar;
End;
End;
Procedure ExtractCommand;
Var
I:Byte;
Begin
For I:=1 to Length(CmdStr)do Begin
If Not(CmdStr[I]in['A'..'Z','a'..'z','_','-','0'..'9'])Then Begin
CurrCommand:=Copy(CmdStr,1,I-1);
ParamList:=TrimL(Copy(CmdStr,I,255));
Exit;
End;
End;
CurrCommand:=CmdStr;
ParamList:='';
End;
Procedure HomeMessage;Begin
WriteLn;
WriteLn('ksh - Korn SHell');
WriteLn;
End;
Procedure ShowPrompt;Begin
Write('$');
End;
Procedure AliasCommand;Begin
WriteLn('Cette commande n''est pas mise en oeuvre');
End;
Procedure BgCommand;Begin
WriteLn('Cette commande n''est pas mise en oeuvre');
End;
Procedure BindCommand;Begin
WriteLn('Cette commande n''est pas mise en oeuvre');
End;
Procedure BreakCommand;Begin
WriteLn('Cette commande n''est pas mise en oeuvre');
End;
Procedure BuildinCommand;Begin
WriteLn('Cette commande n''est pas mise en oeuvre');
End;
Procedure CdCommand;Begin
ChDir(ParamList);
End;
Procedure CommandCommand;Begin
WriteLn('Cette commande n''est pas mise en oeuvre');
End;
Procedure ContinueCommand;Begin
WriteLn('Cette commande n''est pas mise en oeuvre');
End;
Procedure EchoCommand;Begin
WriteLn(ParamList);
End;
Procedure EvalCommand;Begin
WriteLn('Cette commande n''est pas mise en oeuvre');
End;
Procedure ExecCommand;
Var
I:Integer;
Param1,Param2:String;
Begin
Param1:='';
Param2:='';
For I:=1 to Length(ParamList)do Begin
If Not(ParamList[I]in['A'..'Z','a'..'z','_','-','0'..'9'])Then Begin
Param1:=Copy(ParamList,1,I-1);
Param2:=TrimL(Copy(ParamList,I,255));
Break;
End;
End;
If Param1=''Then Param1:=ParamList;
Exec(Param1,Param2);
End;
Procedure ExitCommand;Begin
Terminated:=True;
End;
Procedure ExportCommand;Begin
WriteLn('Cette commande n''est pas mise en oeuvre');
End;
Procedure FalseCommand;Begin
WriteLn('Cette commande n''est pas mise en oeuvre');
End;
Procedure FcCommand;Begin
WriteLn('Cette commande n''est pas mise en oeuvre');
End;
Procedure FgCommand;Begin
WriteLn('Cette commande n''est pas mise en oeuvre');
End;
Procedure GetopsCommand;Begin
WriteLn('Cette commande n''est pas mise en oeuvre');
End;
Procedure HashCommand;Begin
WriteLn('Cette commande n''est pas mise en oeuvre');
End;
Procedure JobsCommand;Begin
WriteLn('Cette commande n''est pas mise en oeuvre');
End;
Procedure KillCommand;Begin
WriteLn('Cette commande n''est pas mise en oeuvre');
End;
Procedure LetCommand;Begin
WriteLn('Cette commande n''est pas mise en oeuvre');
End;
Procedure PrintCommand;Begin
WriteLn('Cette commande n''est pas mise en oeuvre');
End;
Procedure PwdCommand;
Var
CurrDir:String;
Begin
GetDir(0,CurrDir);
ChangeChar(CurrDir,'\','/');
WriteLn(CurrDir);
End;
Procedure ReadCommand;Begin
WriteLn('Cette commande n''est pas mise en oeuvre');
End;
Procedure ReadonlyCommand;Begin
WriteLn('Cette commande n''est pas mise en oeuvre');
End;
Procedure ReturnCommand;Begin
WriteLn('Cette commande n''est pas mise en oeuvre');
End;
Procedure SetCommand;Begin
WriteLn('Cette commande n''est pas mise en oeuvre');
End;
Procedure TestCommand;Begin
WriteLn('Cette commande n''est pas mise en oeuvre');
End;
Procedure TimesCommand;Begin
WriteLn('Cette commande n''est pas mise en oeuvre');
End;
Procedure TrapCommand;Begin
WriteLn('Cette commande n''est pas mise en oeuvre');
End;
Procedure TrueCommand;Begin
WriteLn('Cette commande n''est pas mise en oeuvre');
End;
Procedure TypesetCommand;Begin
WriteLn('Cette commande n''est pas mise en oeuvre');
End;
Procedure UlimitCommand;Begin
WriteLn('Cette commande n''est pas mise en oeuvre');
End;
Procedure UmaskCommand;Begin
WriteLn('Cette commande n''est pas mise en oeuvre');
End;
Procedure UnaliasCommand;Begin
WriteLn('Cette commande n''est pas mise en oeuvre');
End;
Procedure UnsetCommand;Begin
WriteLn('Cette commande n''est pas mise en oeuvre');
End;
Procedure WaitCommand;Begin
WriteLn('Cette commande n''est pas mise en oeuvre');
End;
Procedure WhenceCommand;Begin
WriteLn('Cette commande n''est pas mise en oeuvre');
End;
Procedure UnknownCommand;Begin
WriteLn('Commande ou nom de fichier non reconnu');;
WriteLn;
End;
BEGIN
Terminated:=False;
HomeMessage;
Repeat
ShowPrompt;
ReadLn(CmdStr);
ExtractCommand;
CommandFound:=False;
For J:=Low(CommandList) to High(CommandList) do Begin
If CurrCommand=CommandList[J]Then Begin
Case(J)of
0:AliasCommand;
1:BgCommand;
2:BindCommand;
3:BreakCommand;
4:BuildinCommand;
5:CdCommand;
6:CommandCommand;
7:ContinueCommand;
8:EchoCommand;
9:EvalCommand;
10:ExecCommand;
11:ExitCommand;
12:ExportCommand;
13:FalseCommand;
14:FcCommand;
15:FgCommand;
16:GetopsCommand;
17:HashCommand;
18:JobsCommand;
19:KillCommand;
20:LetCommand;
21:PrintCommand;
22:PwdCommand;
23:ReadCommand;
24:ReadonlyCommand;
25:ReturnCommand;
26:SetCommand;
27:TestCommand;
28:TimesCommand;
29:TrapCommand;
30:TrueCommand;
31:TypesetCommand;
32:UlimitCommand;
33:UmaskCommand;
34:UnaliasCommand;
35:UnsetCommand;
36:WaitCommand;
37:WhenceCommand;
End;
If J<=High(CommandList)Then Begin
CommandFound:=True;
WriteLn;
Break;
End;
End;
End;
If Not(CommandFound)Then UnknownCommand;
Until Terminated;
END.