22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
* -plugindump plugin : Dump plugin source to stdout
* -pluginlist : List known plugins
* -pluginallow : Allow full access privilege for a plugin.
A plugin may further define command line options that it accepts.
A way to see the plugin's options is to do:
<pre>eskil -plugin <plg> -help</pre>
<h1>General Format</h1>
A plugin is a Tcl script file that must start with the verbatim sequence
"##Eskil Plugin :". A plugin is sourced and used in its own safe
interpreter and thus have free access to its own global space. Hookup
points are defined by declaring specifically named procedures as specified
|
>
>
>
>
|
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
* -plugindump plugin : Dump plugin source to stdout
* -pluginlist : List known plugins
* -pluginallow : Allow full access privilege for a plugin.
A plugin may further define command line options that it accepts.
A way to see the plugin's options is to do:
<pre>eskil -plugin <plg> -help</pre>
Multiple -plugin may be given and they will be applied in the given
order. Any -plugininfo and -pluginallow belongs to the last -plugin
before them.
<h1>General Format</h1>
A plugin is a Tcl script file that must start with the verbatim sequence
"##Eskil Plugin :". A plugin is sourced and used in its own safe
interpreter and thus have free access to its own global space. Hookup
points are defined by declaring specifically named procedures as specified
|
106
107
108
109
110
111
112
|
The FileCompare procedure can give the following return values:
* 0 : Files are not equal
* 1 : Files are equal
* 2 : Files are equal as far as the channels have been read.
Let the normal comparison finish the job.
|
>
>
>
|
110
111
112
113
114
115
116
117
118
119
|
The FileCompare procedure can give the following return values:
* 0 : Files are not equal
* 1 : Files are equal
* 2 : Files are equal as far as the channels have been read.
Let the normal comparison finish the job.
Directory diff only supports one plugin. The first plugin with FileCompare
defined will be used.
|