Download WordPress Latest Version with wget command

In this tutorial I am going to show you how to download the latest version of the WordPress installation package using the wget command and curl command.

To Download WordPress with wget, Open the terminal and Type:

wget https://wordpress.org/latest.tar.gz

WordPress installation also available in .zip format. To download the WordPress zip file, Type:

wget https://wordpress.org/latest.zip

We can also use the curl command. To download WordPress with curl command, Type:

curl -O https://wordpress.org/latest.zip

This is gonna be very helpful when you work on a Linux server with no GUI, For example Ubuntu Server.