mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
[CMD]
- Add a newline to the output of the echo command - Remove debug stuff svn path=/trunk/; revision=56471
This commit is contained in:
parent
04406cf0e4
commit
9f40ffd806
3 changed files with 2 additions and 4 deletions
|
@ -582,7 +582,6 @@ INT cmd_copy(LPTSTR param)
|
|||
/* If no destination was entered then just use
|
||||
the current directory as the destination */
|
||||
GetCurrentDirectory(MAX_PATH, szDestPath);
|
||||
printf("szDestPath = %S\n", szDestPath);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -647,7 +646,6 @@ INT cmd_copy(LPTSTR param)
|
|||
{
|
||||
/* Something's seriously wrong! */
|
||||
UseThisName = szDestPath;
|
||||
printf("\n##########\n\n");
|
||||
}
|
||||
|
||||
do
|
||||
|
@ -677,7 +675,6 @@ INT cmd_copy(LPTSTR param)
|
|||
_tcsncat(szSrcPath, appendPointer, 1);
|
||||
appendPointer++;
|
||||
}
|
||||
printf("szSrcPath = %S\n\n", szSrcPath);
|
||||
|
||||
if (_tcschr(arg[nSrc], _T(',')) != NULL)
|
||||
{
|
||||
|
|
|
@ -83,6 +83,7 @@ INT CommandEcho (LPTSTR param)
|
|||
{
|
||||
/* skip the first character */
|
||||
ConOutPuts(param + 1);
|
||||
ConOutPuts("\n");
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -128,7 +128,7 @@ INT cmd_type (LPTSTR param)
|
|||
}
|
||||
}
|
||||
|
||||
ConOutPrintf(_T("\n"));
|
||||
ConOutPuts(_T("\n"));
|
||||
CloseHandle(hFile);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue