36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
a. teapotclient:
i. get_extensions
SYNOPSIS
package require teapotclient
::teapotclient::get_extensions <list_of_teapot_servers> \
?<os_glob_pattern>? ?<cpu_glob_pattern>?
DESCRIPTION
get_extensions gets the extensions that are available from a
list of TEAPOT servers, for a particular operating system
and CPU tuple (which can be glob patterns).
The default OS and CPU patterns are both "*" which will match
all operating system and cpus.
RETURN VALUE
The returned value is a list in the format of:
{Extension_1} {ExtensionInfo_1} {Extension_2} {ExtensionInfo_2} ...
|
|
|
|
|
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
a. teapotclient:
i. get_extensions
SYNOPSIS
package require teapotclient
::teapotclient::get_extensions <teapot_server> \
?<os_glob_pattern>? ?<cpu_glob_pattern>?
DESCRIPTION
get_extensions gets the extensions that are available from a
TEAPOT server, for a particular operating system and CPU
tuple (which can be glob patterns).
The default OS and CPU patterns are both "*" which will match
all operating system and cpus.
RETURN VALUE
The returned value is a list in the format of:
{Extension_1} {ExtensionInfo_1} {Extension_2} {ExtensionInfo_2} ...
|