Live data from Hacker News

The curl-wget Venn diagram

daniel.haxx.se

1–10 of 159 posts

Re: The curl-wget Venn diagram

#9
For me the killer feature of wget is that by default it downloads a file with a name derived from the url.

You do:

    wget url://to/file.htm
and a file named "file.htm" appears in your cwd.

Using curl, you would have to do

    curl url://to/file.htm > file.htm
or some other, less ergonomical, incantation.

Re: The curl-wget Venn diagram

#10
post #9

For me the killer feature of wget is that by default it downloads a file with a name derived from the url. You do: wget url://to/file.htm and a file named "file.htm" appears in your cwd. Using curl, you would have to do curl url://to/file.htm > file.htm or some other, less ergonomical, incantation.

    curl -O
https://curl.se/docs/manpage.html#-O
Post reply on HN