the_naive
the_naive

Reputation: 3064

Alternatives to Curl in CentOS

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

Answers (1)

Paddy Carroll
Paddy Carroll

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

Related Questions