This repository has been archived by the owner on Sep 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shell.pas
executable file
·66 lines (63 loc) · 1.93 KB
/
shell.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
program programa;
uses crt, BaseUnix, Unix, Inicializadores, tipos, Auxiliares, funciones, redireccionObjeto;
var Entrada1, Entrada2: String;
begin
iniciarvariables;
repeat
prompt;
inicializarValores;
readln(Entrada);
comandos:=Descifrador(Entrada);
if (comandos[1] <>'exit') then
begin
hayRedireccion:=multipleEntrada;
while (comandos[1]<>'') do
begin
parteEntrada:= (obtenerEntrada);
if (esInterno) and (not hayRedireccion) then lanzador
else if (esInterno) and (hayRedireccion) then
begin
lanzador;
setlength(parteEntrada,0);
parteEntrada:= (obtenerEntrada);
if (obtenerOperador='|') and (not esInterno) then
Writeln('Debe ingresar dos comandos internos o dos externos')
else
begin
evaluarSalidaInterna;
if (operador='|') then lanzador;
end;
end
else //No es interno
begin
pid := fpFork;
case pid of
-1 : Writeln('Error en el Sistema!!!');
0 : begin
if (hayRedireccion) and (obtenerOperador='|') then
begin
Entrada1:= ArmarEntradaExterno;
parteEntrada:= (obtenerEntrada);
Entrada2:= ArmarEntradaExterno;
tuberia(Entrada1, Entrada2, 'tub.txt');
end
else if (hayRedireccion) and ((obtenerOperador='>') or (obtenerOperador='>>')) then
begin
Entrada:= ArmarEntradaExterno;
parteEntrada:= (obtenerEntrada);
//lanza el comando externo dentro de la redireccion
redireccionarSalida(Entrada, parteEntrada[1]);
end
else lanzarExterno(Entrada); //No hay redireccion
end;
else begin capturarTecla(pid); end;
end;
end;
end;
setlength(parteEntrada,1);
if ((hayRedireccion) and (operador='|')) or
((not(hayRedireccion)) and (parteEntrada[1]<>'mils')) then mostrar(dat);
end;
until (comandos[1]='exit');
Writeln('Hasta luego... ¡Gracias por usar nuestro shell!');
end.