Commit a801995c authored by Jason Edmeades's avatar Jason Edmeades Committed by Alexandre Julliard

cmd.exe: Add 2>&1 and 1>&2 support.

parent 4ef2f8ba
...@@ -533,18 +533,37 @@ void WCMD_process_command (char *command) ...@@ -533,18 +533,37 @@ void WCMD_process_command (char *command)
else { else {
creationDisposition = CREATE_ALWAYS; creationDisposition = CREATE_ALWAYS;
} }
/* Add support for 2>&1 */
redir = p; redir = p;
h = CreateFile (WCMD_parameter (p, 0, NULL), GENERIC_WRITE, 0, &sa, creationDisposition, if (*p == '&') {
FILE_ATTRIBUTE_NORMAL, NULL); int idx = *(p+1) - '0';
if (h == INVALID_HANDLE_VALUE) {
WCMD_print_error (); if (DuplicateHandle(GetCurrentProcess(),
HeapFree( GetProcessHeap(), 0, cmd ); GetStdHandle(idx_stdhandles[idx]),
return; GetCurrentProcess(),
} &h,
if (SetFilePointer (h, 0, NULL, FILE_END) == 0, TRUE, DUPLICATE_SAME_ACCESS) == 0) {
INVALID_SET_FILE_POINTER) { WINE_FIXME("Duplicating handle failed with gle %d\n", GetLastError());
WCMD_print_error (); }
WINE_TRACE("Redirect %d (%p) to %d (%p)\n", handle, GetStdHandle(idx_stdhandles[idx]), idx, h);
} else {
char *param = WCMD_parameter (p, 0, NULL);
h = CreateFile (param, GENERIC_WRITE, 0, &sa, creationDisposition,
FILE_ATTRIBUTE_NORMAL, NULL);
if (h == INVALID_HANDLE_VALUE) {
WCMD_print_error ();
HeapFree( GetProcessHeap(), 0, cmd );
return;
}
if (SetFilePointer (h, 0, NULL, FILE_END) ==
INVALID_SET_FILE_POINTER) {
WCMD_print_error ();
}
WINE_TRACE("Redirect %d to '%s' (%p)\n", handle, param, h);
} }
old_stdhandles[handle] = GetStdHandle (idx_stdhandles[handle]); old_stdhandles[handle] = GetStdHandle (idx_stdhandles[handle]);
SetStdHandle (idx_stdhandles[handle], h); SetStdHandle (idx_stdhandles[handle], h);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment