Project

General

Profile

Logs » History » Version 2

Per Amundsen, 08/13/2015 10:27 AM

1 1 Per Amundsen
_Added in 1.9.0_
2
3
*/logs -defr [directory] [filename] [text]*
4
5
Opens logfolder interface and does a optional custom search.
6
7
Wildcards can be used for all parts.
8
9
*Switches*
10
11
-d - Indicates directory is defined.
12
-e - Exclude sub directories in the search.
13
-f - Indicates filename is defined.
14 2 Per Amundsen
-r - Indicates text is a [[Scripting_Regex|regular expression]] instead of a wildcard.
15 1 Per Amundsen
16
*Parameters*
17
18
[directory] - Log directory to search, used with -d.
19
[filename] - Filename to search, used with -f.
20
[text] - Log text to search.
21
22
*Êxample*
23
24
<pre>
25 2 Per Amundsen
; Open log folder with default log folder listing.
26 1 Per Amundsen
/logs
27
28 2 Per Amundsen
; Open log folder with custom folder and a regular expression matching all lines containing Hello.
29 1 Per Amundsen
/logs -dr "c:\logs folder" .*Hello.*
30
31
</pre>