2 * TYPE.C - type internal command.
6 * 07/08/1998 (John P. Price)
10 * Changed error messages
12 * 27-Jul-1998 (John P Price <linux-guru@gcfl.net>)
13 * added config.h include
15 * 07-Jan-1999 (Eric Kohl <ekohl@abo.rhein-zeitung.de>)
16 * Added support for quoted arguments (type "test file.dat").
19 * 19-Jan-1999 (Eric Kohl <ekohl@abo.rhein-zeitung.de>)
20 * Unicode and redirection ready!
22 * 19-Jan-1999 (Paolo Pantaleo <paolopan@freemail.it>)
23 * Added multiple file support (copied from y.c)
25 * 30-Apr-2005 (Magnus Olsen) <magnus@greatlord.com>)
26 * Remove all hardcode string to En.rc
32 #ifdef INCLUDE_CMD_TYPE
35 INT
cmd_type (LPTSTR cmd
, LPTSTR param
)
37 TCHAR szMsg
[RC_STRING_MAX_SIZE
];
39 HANDLE hFile
, hConsoleOut
;
46 BOOL bFirstTime
= TRUE
;
48 hConsoleOut
=GetStdHandle (STD_OUTPUT_HANDLE
);
50 if (!_tcsncmp (param
, _T("/?"), 2))
52 ConOutResPaging(TRUE
,STRING_TYPE_HELP1
);
58 error_req_param_missing ();
62 argv
= split (param
, &argc
, TRUE
);
64 for(i
= 0; i
< argc
; i
++)
66 if(*argv
[i
] == _T('/') && _tcslen(argv
[i
]) >= 2 && _totupper(argv
[i
][1]) == _T('P'))
72 for (i
= 0; i
< argc
; i
++)
74 if (_T('/') == argv
[i
][0] && _totupper(argv
[i
][1]) != _T('P'))
76 LoadString(CMD_ModuleHandle
, STRING_TYPE_ERROR1
, szMsg
, RC_STRING_MAX_SIZE
);
77 ConErrPrintf(szMsg
, argv
[i
] + 1);
83 hFile
= CreateFile(argv
[i
],
87 FILE_ATTRIBUTE_NORMAL
,NULL
);
89 if(hFile
== INVALID_HANDLE_VALUE
)
91 FormatMessage (FORMAT_MESSAGE_ALLOCATE_BUFFER
|
92 FORMAT_MESSAGE_IGNORE_INSERTS
|
93 FORMAT_MESSAGE_FROM_SYSTEM
,
96 MAKELANGID(LANG_NEUTRAL
, SUBLANG_DEFAULT
),
100 ConErrPrintf (_T("%s - %s"), argv
[i
], errmsg
);
108 bRet
= ReadFile(hFile
,buff
,sizeof(buff
),&dwRead
,NULL
);
113 ConOutPrintfPaging(bFirstTime
, buff
);
122 } while(dwRead
>0 && bRet
);