1999-03-20 20:28:42 +00:00
|
|
|
/*
|
|
|
|
* TYPE.C - type internal command.
|
|
|
|
*
|
|
|
|
* History:
|
|
|
|
*
|
|
|
|
* 07/08/1998 (John P. Price)
|
|
|
|
* started.
|
|
|
|
*
|
|
|
|
* 07/12/98 (Rob Lake)
|
|
|
|
* Changed error messages
|
|
|
|
*
|
|
|
|
* 27-Jul-1998 (John P Price <linux-guru@gcfl.net>)
|
|
|
|
* added config.h include
|
|
|
|
*
|
|
|
|
* 07-Jan-1999 (Eric Kohl <ekohl@abo.rhein-zeitung.de>)
|
|
|
|
* Added support for quoted arguments (type "test file.dat").
|
|
|
|
* Cleaned up.
|
|
|
|
*
|
|
|
|
* 19-Jan-1999 (Eric Kohl <ekohl@abo.rhein-zeitung.de>)
|
|
|
|
* Unicode and redirection ready!
|
1999-11-27 19:14:59 +00:00
|
|
|
*
|
|
|
|
* 19-Jan-1999 (Paolo Pantaleo <paolopan@freemail.it>)
|
|
|
|
* Added multiple file support (copied from y.c)
|
1999-03-20 20:28:42 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#ifdef INCLUDE_CMD_TYPE
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
#include <tchar.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "cmd.h"
|
|
|
|
|
|
|
|
|
|
|
|
INT cmd_type (LPTSTR cmd, LPTSTR param)
|
|
|
|
{
|
1999-11-27 19:14:59 +00:00
|
|
|
TCHAR buff[256];
|
|
|
|
HANDLE hFile, hConsoleOut, hFind;
|
|
|
|
DWORD dwRead;
|
|
|
|
DWORD dwWritten;
|
|
|
|
BOOL bRet;
|
|
|
|
INT argc,i;
|
|
|
|
LPTSTR *argv;
|
|
|
|
WIN32_FIND_DATA FindData;
|
|
|
|
|
|
|
|
hConsoleOut=GetStdHandle (STD_OUTPUT_HANDLE);
|
|
|
|
|
|
|
|
|
1999-03-20 20:28:42 +00:00
|
|
|
|
|
|
|
if (!_tcsncmp (param, _T("/?"), 2))
|
|
|
|
{
|
|
|
|
ConOutPuts (_T("Displays the contents of text files.\n\n"
|
|
|
|
"TYPE [drive:][path]filename"));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!*param)
|
|
|
|
{
|
|
|
|
error_req_param_missing ();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
1999-11-27 19:14:59 +00:00
|
|
|
argv = split (param, &argc);
|
|
|
|
|
1999-11-29 18:25:05 +00:00
|
|
|
for (i = 0; i < argc; i++)
|
1999-11-27 19:14:59 +00:00
|
|
|
{
|
|
|
|
hFind=FindFirstFile(argv[i],&FindData);
|
|
|
|
|
|
|
|
if (hFind==INVALID_HANDLE_VALUE)
|
|
|
|
{
|
|
|
|
ConErrPrintf("File not found - %s\n",argv[i]);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
hFile = CreateFile(FindData.cFileName,
|
|
|
|
GENERIC_READ,
|
|
|
|
FILE_SHARE_READ,NULL,
|
|
|
|
OPEN_EXISTING,
|
|
|
|
FILE_ATTRIBUTE_NORMAL,NULL);
|
|
|
|
|
|
|
|
if(hFile == INVALID_HANDLE_VALUE)
|
|
|
|
{
|
|
|
|
ConErrPrintf("File not found - %s\n",FindData.cFileName);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
bRet = ReadFile(hFile,buff,sizeof(buff),&dwRead,NULL);
|
|
|
|
|
|
|
|
if (dwRead>0 && bRet)
|
|
|
|
WriteFile(hConsoleOut,buff,dwRead,&dwWritten,NULL);
|
|
|
|
|
|
|
|
} while(dwRead>0 && bRet);
|
|
|
|
|
|
|
|
CloseHandle(hFile);
|
|
|
|
|
|
|
|
}
|
|
|
|
while(FindNextFile(hFind,&FindData));
|
|
|
|
|
|
|
|
FindClose(hFile);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1999-03-20 20:28:42 +00:00
|
|
|
if (args > 1)
|
|
|
|
{
|
|
|
|
error_too_many_parameters (_T("\b \b"));
|
|
|
|
freep (arg);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
hFile = CreateFile (arg[0], GENERIC_READ, FILE_SHARE_READ,
|
|
|
|
NULL, OPEN_EXISTING,
|
|
|
|
FILE_ATTRIBUTE_NORMAL | FILE_FLAG_SEQUENTIAL_SCAN,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
if (hFile == INVALID_HANDLE_VALUE)
|
|
|
|
{
|
|
|
|
error_sfile_not_found (param);
|
|
|
|
freep (arg);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
bResult = ReadFile (hFile, szBuffer, sizeof(szBuffer),
|
|
|
|
&dwBytesRead, NULL);
|
|
|
|
if (dwBytesRead)
|
|
|
|
WriteFile (GetStdHandle (STD_OUTPUT_HANDLE), szBuffer, dwBytesRead,
|
|
|
|
&dwBytesWritten, NULL);
|
|
|
|
}
|
|
|
|
while (bResult && dwBytesRead > 0);
|
|
|
|
|
|
|
|
CloseHandle (hFile);
|
1999-11-27 19:14:59 +00:00
|
|
|
*/
|
|
|
|
freep (argv);
|
1999-03-20 20:28:42 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|