How to download file using Curl
Curl command can be used to download web files to local.
#curl URL -o file
Where URL need to be replaced with the link to the web page and file need to be replaced with the name of the local file to which the content to be saved.
Please note that the curl command will show the progress indicator during execution. If we need to disable that, use the "-s" option along with the command.
#curl -s URL -o file
Where URL need to be replaced with the link to the web page and file need to be replaced with the name of the local file to which the content to be saved.
That's all…