Author : Piyush Gupta
Curl command file utility supports for downloading and uploading files. Curl is useful for many works with system administration, web development for calling web services, etc. In this tutorial we are providing 5 curl frequently used commands to download files from remote servers.
Curl command file utility supports for downloading and uploading files. Curl is useful for many works with system administration, web development for calling web services, etc. In this tutorial we are providing 5 curl frequently used commands to download files from remote servers.
1. cURL Command to Download and Save File
To simply download a file using curl use following syntax. -O is used for saving file on the local system with the same name on the remote system.2. cURL Download and Save with Other Name
If you want to save file with different name on local system, Use -o with new file name.3. cURL to Download Multiple Files
Curl also provides an option to download multiple files simultaneously. To download multiple file use following syntax. All files will be saves with original file names.4. Passing Login Credential with cURL Download
In case files are behind authenticated http or ftp server. You can pass login credentials using -u command line parameter like below examples.
No comments:
Post a Comment