Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Paste
P183
Fetch a remote URL content in TCL
Active
Public
Actions
Authored by
dereckson
on Apr 1 2016, 18:55.
Edit Paste
Archive Paste
View Raw File
Subscribe
Mute Notifications
Award Token
Flag For Later
Tags
IRC
Dæghrefn
Referenced Files
F28475: Fetch a remote URL content in TCL
Apr 1 2016, 18:55
2016-04-01 18:55:23 (UTC+0)
Subscribers
None
package
require http
#Reads specified URL and returns content
proc
geturltext
{
url
}
{
set
fd
[
http
::
geturl
$url
]
set
text
[
http
::
data
$fd
]
http
::
cleanup
$fd
return
text
}
Event Timeline
dereckson
created this paste.
Apr 1 2016, 18:55
2016-04-01 18:55:23 (UTC+0)
Log In to Comment