home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware 1 2 the Maxx
/
sw_1.zip
/
sw_1
/
JOKES
/
JOKES_C.ZIP
/
CRCONV.BAK
< prev
next >
Wrap
Text File
|
1992-01-08
|
238b
|
14 lines
{$M 16384,0,16384}
uses dos;
var
sr: searchrec;
s: string;
f: text;
begin;
findfirst('*.*',0,sr);
while doserror=0 do begin;
exec('COMMAND.COM /C','TYPE '+sr.name+' | FILT.EXE > '+sr.name);
findnext(sr);
end;
end.