Comment 0 for bug 272921

Revision history for this message
goto (gotolaunchpad) wrote :

Binary package hint: wine

In Windows, the COPY command run in a command prompt allows users to concatenate files by using a plus ("+") operator, for example:

copy file1+file2 outfile

In wine's cmd.exe, it seems to read file1+file2 as a single path and therefore outputs a "Path Not Found". Also, it does not recognize the "con" keyword used to represent stdout/stdin. Therefore another method of concatenating files:

copy file1 outfile
copy file2 con >> outfile

does not work either.