In Linux environment we use wget tool to download the contents using http or https urls. How can we do the similar thing in window since there is no wget command in windows. We can use below approach to download the files using command prompt in windows.


curl https://repo1.maven.org/maven2/com/google/guava/guava/28.1-android/guava-28.1-android.jar --output guava.jar --insecure

Here
Curl: Command to download the contents
--Output: Content is going to write in a disk
guava.jar- Destination file name
--insecure- This is to avoid ssl error in curl