How to view wget source code?

I went to this link http://ftp.gnu.org/gnu/wget/ and downloaded different versions, but I have no idea how to unpack it.

+4
source share
2 answers

You do not need to download it. Check out their source code repository and read everything using your browser. Here is main.c. See How to access the Wget source code repository for more details.

+12
source

tar.gz is a common extension for files that were "tarred" ("tape archive" using the "tar" program) and "gzipped".

Most Linux systems come with these preinstalled, so you can extract files using something like this:

tar xf wget-1.13.tar.gz 

On Windows, use some unpacking program such as 7-Zip, WinZip or WinAce, or use tar from mingw / cygwin.

+1
source

Source: https://habr.com/ru/post/1383740/


All Articles