How to download using linux command line
|
|
shanky | Date: Wednesday, 2014-02-05, 4:16 PM | Message # 1 |
Lieutenant
Group: Administrators
Messages: 46
Awards: 0
Reputation: 104
Status: Offline
| I want to download a file using command in linux terminal. Is there a command to do this?
s.k.bhagat
|
|
|
|
Guest | Date: Wednesday, 2014-02-05, 4:23 PM | Message # 2 |
Group: Guests
| One can get the content of a url using "curl" utility.
curl "url"
Also one can save the output of a url content to a file using below command
curl "url"> filename
|
|
|
|