Answers for "ubuntu download file command line"

1

linux download file

sudo apt-get install wget
wget http://www.website-name.com/file
Posted by: Guest on September-10-2020
0

ubuntu download file command line

$ sudo apt install curl

Download and save the file using the source file name
$ curl –O [URL]

Download and save the file with a different name
$ curl –o [filename] [URL]


Download multiple files
$ curl -O [URL1] -O [URL2]

Download files using Wget
----------------------------
$ sudo apt-get install wget
$ wget [URL]
$ wget -O [filename] [URL]
Posted by: Guest on September-30-2021

Code answers related to "ubuntu download file command line"

Python Answers by Framework

Browse Popular Code Answers by Language