This shows you the differences between two versions of the page.
|
libevecache:start [2010/04/11 21:19] 79.109.136.127 fixed double dashes on dumper options |
libevecache:start [2010/08/10 20:02] (current) 85.234.7.96 Added windows shell command for filename globbing |
||
|---|---|---|---|
| Line 25: | Line 25: | ||
| dumper %%--%%market "c:\documents and settings\....\CachedMethodCalls\*.cache" > alllogs.csv | dumper %%--%%market "c:\documents and settings\....\CachedMethodCalls\*.cache" > alllogs.csv | ||
| - | ''NOTE:'' Windows does not do filename globbing as part of the shell. dumper.exe does not attempt to re-implement operating system functionality. To allow globbing to work, you will need to use a real shell. | + | ''NOTE:'' Windows does not do filename globbing as part of the shell. dumper.exe does not attempt to re-implement operating system functionality. To allow globbing to work, you will need to use a real shell. There is a way for windows, use command: for %r in ("c:\documents and settings\....\CachedMethodCalls\*.cache") do dumper --market "%r" >> alllogs.csv |
| Which will produce a single file for all market logs, delineated by the header in the file. | Which will produce a single file for all market logs, delineated by the header in the file. | ||