File download using CURL
Hi there,
I'm trying to download the file(s) from external server. The protocol which i'm using is https, to download the file i'm using CURL utility but this utility is not downloading the file. Command which i'm using is
curl -k -u {user_name}:{password} url/{filename}
the url will look something like https://filetransfer.abc.com
I tried to list out the file at least but its not working curl -kl -u {user_name}:{password} {url}
Can some one please suggest me how to use curl for downloading the files.
Thanks in advance,