Project

General

Profile

Logs » History » Version 3

Per Amundsen, 06/28/2017 02:27 PM

1 1 Per Amundsen
_Added in 1.9.0_
2
3 3 Per Amundsen
*/logs [-defrxgc] [directory] [filename] [text]*
4 1 Per Amundsen
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
-r - Indicates text is a [[Scripting_Regex|regular expression]] instead of a wildcard.
15 3 Per Amundsen
-x - Use exact text match.
16
-g - Indicates filename is a [[Scripting_Regex|regular expression]] instead of a wildcard.
17
-c - Use exact filename match.
18 1 Per Amundsen
19
*Parameters*
20
21
[directory] - Log directory to search, used with -d.
22
[filename] - Filename to search, used with -f.
23
[text] - Log text to search.
24
25
*Êxample*
26
27
<pre>
28 2 Per Amundsen
; Open log folder with default log folder listing.
29 1 Per Amundsen
/logs
30
31 2 Per Amundsen
; Open log folder with custom folder and a regular expression matching all lines containing Hello.
32 1 Per Amundsen
/logs -dr "c:\logs folder" .*Hello.*
33
34
</pre>