127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
puts "Downloading md5 and sha1 packages for the current system"
::teapotclient::download_extensions "." \
[list teapot.activestate.com] [list md5 sha1] $os \
$tcl_platform(machine)
b. teapot-client.tcl (not installed):
i. teapot-client get <dir> <os> <cpu> <packages...>
Downloads all the requested extensions/packages for the OS+CPU
pair into the "lib" directory of the directory specified.
ii. teapot-client list ?<os>? ?<cpu>?
Lists all available extensions and their most recent versions,
optionally restricted to an OS+CPU pair.
|
|
|
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
puts "Downloading md5 and sha1 packages for the current system"
::teapotclient::download_extensions "." \
[list teapot.activestate.com] [list md5 sha1] $os \
$tcl_platform(machine)
b. teapot-client / teapot-client.tcl:
i. teapot-client get <dir> <os> <cpu> <packages...>
Downloads all the requested extensions/packages for the OS+CPU
pair into the "lib" directory of the directory specified.
ii. teapot-client list ?<os>? ?<cpu>?
Lists all available extensions and their most recent versions,
optionally restricted to an OS+CPU pair.
|