导读 | curl是用于从远程服务器传输数据或向远程服务器传输数据的强大命令行工具。 使用curl可以使用各种网络协议(例如HTTP,HTTPS,SCP,SFTP和FTP)下载或上传数据。 |
如果在尝试下载带有curl的文件时收到一条错误消息,提示未找到curl命令,则表明CentOS计算机上未安装curl软件包。
本文提供了有关如何在CentOS 8上安装和使用curl命令的说明。
在CentOS上安装curl
标准CentOS 8储存库中提供了Curl软件包。 要安装它,请运行以下命令:
[linuxidc@localhost ~/www.linuxidc.com]$sudo dnf install curl
安装完成后,通过在终端中键入curl进行验证:
[linuxidc@localhost ~/www.linuxidc.com]$curl
输出应如下所示:
curl: try 'curl --help' or 'curl --manual' for more information
使用curl
不带任何选项使用时,curl将给定URL的源代码打印到标准输出中:
[linuxidc@localhost ~/www.linuxidc.com]$curl https://www.linuxidc.com
要下载带有curl的文件,请使用-o或-O选项,然后使用URL指向文件。
小写的-o选项使您可以指定保存文件的名称:
[linuxidc@localhost ~/www.linuxidc.com]$curl -o linux.jpg https://www.linuxidc.com/logo/linuxidc.jpg
大写字母-O使用原始文件名保存文件:
[linuxidc@localhost ~/www.linuxidc.com]$curl -O https://www.linuxidc.com/logo/linuxidc.jpg
当与-I选项一起使用时,curl将显示给定URL的HTTP标头:
[linuxidc@localhost ~/www.linuxidc.com]$curl -I https://www.linuxidc.com/ HTTP/1.1 200 OK Date: Sat, 15 Feb 2020 07:37:39 GMT Content-Type: text/html Connection: keep-alive Vary: Accept-Encoding Cache-Control: max-age=60 Last-Modified: Sat, 15 Feb 2020 07:33:07 GMT ETag: W/"80bb522ad2e3d51:0" Vary: Accept-Encoding X-Frame-Options: SAMEORIGIN X-Via-JSL: 0b3d685,cache 2.4.6 disk Set-Cookie: __jsluid_s=117b674ea22b6333f3c2075297cb0217; max-age=31536000; path=/; HttpOnly; secure Expires: Sat, 15 Feb 2020 07:38:39 GMT X-Cache: hit
使用curl,您还可以从受密码保护的FTP服务器下载文件:
$curl -u FTP_USERNAME:FTP_PASSWORD ftp://ftp.linuxidc.com/linuxidc.tar.gz
总结
curl是一种多功能工具,可让您通过网络发送和接收数据。
如果您有任何疑问或反馈,请随时发表评论。
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/122618.html