Can someone tell me the CP/M command to copy a single
file or program
on my Kaypro from drive B: to drive A:
I do not want to copy the whole disk just a single file or two..
Thanks, Phil...
PIP A:=B:filename
Yes, the source comes AFTER the destination. Think of assignment statements
in programming languages.
You can use wildcards * and ? to specify the file on B:. They work the same
way as in DOS (unfortunately). If you specify one file on B:, you can give
it a different name on A: by adding the name before the equals sign.
-- Derek