[futurebasic] Re: [FB] curl + progress indicator

Message: < previous - next > : Reply : Subscribe : Cleanse
Home   : February 2008 : Group Archive : Group : All Groups

From: Ken Shmidheiser <kshmidheiser@...>
Date: Sun, 10 Feb 2008 14:11:37 -0500
Brian asked:

> Hi Ken, Which 4 of the 5 occurrences should be changed? (will save me
> some time- thank you!)


Brian,

This demonstrates the point and gets rid of the fancy stuff.

Apologies to all for the wasted bandwidth.

Ken

local fn DoDownload
dim as str255  s

edit$(_resultEF) = ""
s  = "cd ~/Desktop;"
s += " curl -O"
s += " http://4toc.com/fb4/FB_pkg_4_4_2.zip 2>&1"
fn DoUnixCommand( s )

end fn