- 368 名前:名無しさん@お腹いっぱい。 mailto:sage [2007/04/29(日) 13:29:26 ID:RPVfs0TI0]
- >>367の続き
---以下続き--- main(); function main(){ var WshShell, ARGV, index, char_code, attr_str, search_phrase, objExecl, parser; var WshShell = new ActiveXObject('WScript.Shell'); ARGV = WScript.Arguments; index = ARGV(0); char_code = ARGV(2); var parser = new StringParser(ARGV(1)); attr_str = parser.attr_str; search_phrase = parser.search_phrase; var objExec = WshShell.Exec('estcmd search -nl -ic ' + char_code + ' -vu -aux 99 -max -1' + attr_str + ' "' + index + '" "' + search_phrase + '"'); while(!objExec.StdOut.AtEndOfStream) { WScript.StdOut.WriteLine(objExec.StdOut.ReadLine()); } }
|

|