fpc/rtl/os2/atx.pas
1998-03-25 11:18:12 +00:00

15 lines
167 B
ObjectPascal

program atx;
var f:text;
s:string;
begin
assign(f,'c:\autoexec.bat');
reset(f);
while not eof(f) do
begin
readln(f,s);
writeln(s);
end;
close(f);
end.