96f013483bfe1e4018431f34f946ac999890ea51 kent Tue May 7 09:11:22 2013 -0700 Moving parallelFetch to a new module. diff --git src/utils/paraFetch/paraFetch.c src/utils/paraFetch/paraFetch.c index 7632435..a49fc40 100644 --- src/utils/paraFetch/paraFetch.c +++ src/utils/paraFetch/paraFetch.c @@ -1,21 +1,22 @@ /* paraFetch - fetch URL with multiple parallel connections. */ #include "common.h" #include "options.h" #include "dystring.h" #include "obscure.h" #include "net.h" +#include "paraFetch.h" void usage() /* Explain usage and exit */ { errAbort( "paraFetch - try to fetch url with multiple connections\n" "usage:\n" " paraFetch N R URL {outPath}\n" " where N is the number of connections to use\n" " R is the number of retries\n" " outPath is optional. If not specified, it will attempt to parse URL to discover output filename.\n" "options:\n" " -newer only download a file if it is newer than the version we already have.\n" " -progress Show progress of download.\n" );