Fixed warning.
[wine.git] / programs / wcmd / README
blob9496ba111ac61ee1497ae5a87dce46480405774f
1 WCMD - A Command-Line Interface for WINE
2 Copyright (C) 1999 D Pickles (davep@nugate.demon.co.uk)
3 Open Source software published under the Wine Licence and Warranty.
5 This is an Alpha version and is very much "work in progress".
7 WHAT'S INCLUDED
8 - Sources
9 - A Makefile for compiling with LibWine. Build Wine with "-enable-dll" first.
10 - A Makefile for Borland C++ (needs editing for directories).
12 WHAT'S MISSING
13 - Pipes
14 - Command-line qualifiers for most builtin commands
15 - Wildcards and relative paths in COPY, MOVE and RENAME
16 - Set functionality in DATE, TIME, ATTRIB, LABEL
17 - Full internationalisation of the text (and commands?).
19 WHAT DOESN'T WORK
20 - The ATTRIB command reports all files having their Archive flag set, and the
21 READONLY setting depends on the Unix file permissions. All other flags are
22 always clear. The Wine attributes API calls map to the Unix stat() function
23 which cannot handle the other attributes available in DOS.
24 - Date/timestamps of files in the DIR listing are shown using the current
25 locale. As there is AFAIK no way to set the locale, they will always appear in
26 US format.
27 - Line editing and command recall doesn't work due to missing functionality in
28 Wine.
29 - File sizes in the DIR function are all given in 32 bits, though totals and
30 free space are computed to 64 bits.
31 - DIR/S fails if there is no matching file in the starting directory, ie
32 "DIR C:\TEMP\*.c /S" doesn't work if there is no file matching *.c in C:\TEMP
33 but one does exist in a lower directory.
34 - Copy, rename, move, need the source and destination to be specified fully
35 with an absolute or relative path but no wildcards or partial filenames.
36 - The IF ERRORLEVEL construct is not implemented.
37 - Redirection is implemented as a command line is parsed. This means that ">"
38 and "<" symbols cannot appear in command arguments even within quotes.
39 - In many cases parsing and syntax checking is less rigorous than DOS. Thus an
40 existing DOS batch file will probably run unchanged under Wcmd but the reverse
41 may not be the case.
43 WINE OR WIN32 BINARY?
44 Wcmd can be built as a Wine binary, or (using a Win32 compiler) as a Win32 .EXE
45 image. The Wine binary is simpler to invoke from the U**x command line or from
46 a GUI such as KDE, however it is not possible to invoke a second shell using the
47 "WCMD /C filename" syntax. Conversely a Win32 application can be invoked from a
48 Win32 GUI such as Program Manager but that needs starting under Wine first.