Is there a way to get boost libraries with wget via some ftp server? I am on linux and want to write a script to grab the source directly.
Instead of using ftp and wget, you could let your script call svn to
grab the source of the SVN server. See
http://www.boost.org/users/download/#repository
Best,
Dee
On Tue, Sep 22, 2009 at 8:56 AM, Matthew Galati
Is there a way to get boost libraries with wget via some ftp server? I am on linux and want to write a script to grab the source directly. _______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users
2009/9/22 Matthew Galati
Is there a way to get boost libraries with wget via some ftp server? I am on linux and want to write a script to grab the source directly.
$ wget http://downloads.sourceforge.net/project/boost/boost/1.40.0/boost_1_40_0.tar... Chris -- echo mailto: NOSPAM !#$.'<*>'|sed 's. ..'|tr "<*> !#:2" org@fr33z3
2009/9/22 Christoph Gysin
2009/9/22 Matthew Galati
: Is there a way to get boost libraries with wget via some ftp server? I am on linux and want to write a script to grab the source directly.
$ wget http://downloads.sourceforge.net/project/boost/boost/1.40.0/boost_1_40_0.tar...
Though that's http now. Fun aside. I guess Matthew initially wanted sourcefile-by-sourcefile access, for which SVN would do a good job, especially considering bandwidth waste. Sebastian http://picogen.org
Is there a way to get boost libraries with wget via some ftp server? I am on linux and want to write a script to grab the source directly.
$ wget http://downloads.sourceforge.net/project/boost/boost/1.40.0/boost_1_40_0.tar...
I am getting an error when trying to do this. magala@ORCLUS41 ~/COIN/coin-Decomp/Decomp/examples/ExternalSolvers/Graph $ wget http://downloads.sourceforge.net/project/boost/boost/1.40.0/boost_1_40_0 .tar.bz2 --2009-09-23 01:10:27-- http://downloads.sourceforge.net/project/boost/boost/1. 40.0/boost_1_40_0.tar.bz2 Resolving downloads.sourceforge.net... 216.34.181.59 Connecting to downloads.sourceforge.net|216.34.181.59|:80... failed: Connection refused.
I am getting an error when trying to do this.
magala@ORCLUS41 ~/COIN/coin-Decomp/Decomp/examples/ExternalSolvers/Graph $ wget http://downloads.sourceforge.net/project/boost/boost/1.40.0/boost_1_40_0 .tar.bz2 --2009-09-23 01:10:27-- http://downloads.sourceforge.net/project/boost/boost/1. 40.0/boost_1_40_0.tar.bz2 Resolving downloads.sourceforge.net... 216.34.181.59 Connecting to downloads.sourceforge.net|216.34.181.59|:80... failed: Connection refused.
Not really related to boost. Anyway: The commandline you have given tries to download a directory, and it's not the commandline given to you by Christoph. Try do download an actual file. It can also be that you have to work at some direct link, like http://downloads.sourceforge.net/project/boost/boost/1.40.0/boost_1_40_0.tar...
Am Tuesday 22 September 2009 02:56:39 schrieb Matthew Galati:
Is there a way to get boost libraries with wget via some ftp server? I am on linux and want to write a script to grab the source directly.
boost is hosted on sourceforge and I've seen the script that sets up the boost documentation system do exactly that, wget from sourceforge. (it uses another tool to do the download, but I changed it to wget because of a proxy and it worked). the script is somewhere in tool/doc, or doc/tool or whatever, you should find the exact location in the chapter about boostbook in the boost documentation.
participants (5)
-
Christoph Gysin
-
Diederick C. Niehorster
-
Matthew Galati
-
Sebastian Mach
-
Stefan Strasser