"start" or "start cmd" now opens a new cmd.exe in its own process. this is how MS cmd does it.

svn path=/trunk/; revision=17875
This commit is contained in:
Brandon Turner 2005-09-16 05:35:43 +00:00
parent 00e96a6cb1
commit 3d2d6eff0b

View file

@ -169,7 +169,6 @@ INT cmd_start (LPTSTR First, LPTSTR Rest)
return 0; return 0;
} }
/* get the PATH environment variable and parse it */ /* get the PATH environment variable and parse it */
/* search the PATH environment variable for the binary */ /* search the PATH environment variable for the binary */
if (!SearchForExecutable (rest, szFullName)) if (!SearchForExecutable (rest, szFullName))
@ -187,6 +186,7 @@ INT cmd_start (LPTSTR First, LPTSTR Rest)
return 1; return 1;
} }
/* check if this is a .BAT or .CMD file */ /* check if this is a .BAT or .CMD file */
if (!_tcsicmp (_tcsrchr (szFullName, _T('.')), _T(".bat")) || if (!_tcsicmp (_tcsrchr (szFullName, _T('.')), _T(".bat")) ||
!_tcsicmp (_tcsrchr (szFullName, _T('.')), _T(".cmd"))) !_tcsicmp (_tcsrchr (szFullName, _T('.')), _T(".cmd")))
@ -202,9 +202,6 @@ INT cmd_start (LPTSTR First, LPTSTR Rest)
memcpy(&szFullCmdLine[1], &szFullCmdLine[0], _tcslen(szFullCmdLine) * sizeof(TCHAR)); memcpy(&szFullCmdLine[1], &szFullCmdLine[0], _tcslen(szFullCmdLine) * sizeof(TCHAR));
szFullCmdLine[0] = _T('\"'); szFullCmdLine[0] = _T('\"');
szFullCmdLine[_tcslen(szFullCmdLine)] = _T('\"'); szFullCmdLine[_tcslen(szFullCmdLine)] = _T('\"');
} }
#ifdef _DEBUG #ifdef _DEBUG
@ -239,9 +236,18 @@ INT cmd_start (LPTSTR First, LPTSTR Rest)
CREATE_NEW_CONSOLE, NULL, NULL, &stui, &prci); CREATE_NEW_CONSOLE, NULL, NULL, &stui, &prci);
} }
else else
{
if(!_tcsicmp(szFullName,comspec))
{
bCreate = CreateProcess (szFullName, szFullCmdLine, NULL, NULL, FALSE,
CREATE_NEW_CONSOLE, NULL, NULL, &stui, &prci);
}
else
{ {
bCreate = CreateProcess (szFullName, szFullCmdLine, NULL, NULL, FALSE, bCreate = CreateProcess (szFullName, szFullCmdLine, NULL, NULL, FALSE,
DETACHED_PROCESS, NULL, NULL, &stui, &prci); DETACHED_PROCESS, NULL, NULL, &stui, &prci);
}
} }