Comments by "Lawrence D’Oliveiro" (@lawrencedoliveiro9104) on "Private Security Patching Is A Nightmare In Open Source" video.
-
7
-
2
-
1
-
1
-
I had a look at the source code. Counting up the number of lines in files in subdirectories called “lib” and “src” for both projects, curl comes in at about 190,000 lines, while wget is only slightly smaller at about 180,000 lines.
So while wget handles fewer protocols, it has more functions for working with them. Like in order to do recursive mirroring of a website, it has to do some HTML parsing.
I would say, all the other protocols that curl implements, that wget does not, are unnecessary. For example, media streaming: what is the point, when ffmpeg is purpose-built not only for handling the connections, but also the necessary media packaging? Why bother with SCP/SFTP, when SSH clients already include that? Or SMB, when you have smbclient? And Telnet, of all things--what is the point with that?
1
-
1
-
1