Google
 

Trailing-Edge - PDP-10 Archives - decus_20tap1_198111 - decus/20-0003/copy.pas
There are no other files named copy.pas in the archive.
{$a-}
 program test(input,output);
var i:integer;foo:text;
begin
close(foo);
while not eof(input) do
  begin
  output^ := input^;
  put(output);
  get(input);
  end;
close(input);
close(output);
end.