Reputation: 3064
is there any other efficient alternative clients to CURL in Centos by which I can send a PUT request to Upload a file to the webserver that is installed in the host?
Thank you
Upvotes: 0
Views: 956
Reputation: 538
Curl is the de-facto command line tool for that sort of malarkey over http
to transfer files you can also use:
ftp sftp scp smbclient
I could go on, you will need to be more specific
Upvotes: 1