Linux does not install curl by default. Curl is a file transfer tool that uses URLs to work on the command line. Not all Linux systems come with the curl command. For example, the simple version of Linux systems may not exist. Just install it by executing the "yum install curl" command. That’s it.
#The operating environment of this tutorial: linux5.9.8 system, Dell G3 computer.
curl command
The curl command in Linux system is a file transfer tool that uses URL to work on the command line, usually used in Linux system access to services and download files.
The curl command supports HTTP, HTTPS, FTP and other protocols, and can be used to simulate service requests and upload and download files.
Is curl installed by default on Linux?
linux does not install curl by default.
Not all systems come with the curl command, and it may not exist for simple Linux systems. In this case, you can use the yum command to install curl, yum install curl
.
After the installation is complete, you can use the curl --version
command to view the version information of curl in the system.
The syntax format of the curl command
The standard usage syntax of the curl command is: curl [options] [url]
, where options
is used to specify parameter items, url
is the requested service address.
Execute the request without using parameters: curl http://www.baidu.com. In this case, the command execution will directly request the specified service address and output the source code of the request result to the Linux command line.
Related parameters:
The curl command implements rich functions through different parameter items. Common parameter items are:
-i, i.e. --head, indicates that the request result displays the response header information
-o, i.e. --output, followed by the file path, indicates that the request result is written to To the specified file
-s, that is, --silent, silent mode, which means that no additional information will appear in the request result at this time
- w, that is, --write-out [format], the parameter is followed by the format string, indicating the specified output content after the command is executed.
Usually you can use the command when testing whether the interface is normal:
curl -o /dev/null -s -w %{http_code} http://www.baidu.com
At this time, the return source code of the service is written into the empty address null, and the silent mode is turned on, and the http status code is output after the request. If the request is successful, 200 is returned.
For more available parameters of curl, you can use curl -h/--help to query.
Use curl to upload and download files
1. File upload
provided in curl For the command parameters of uploading files, you can initiate a request through -F followed by file information.
curl -F 'file=@test.png;type=image/png' http://www.baidu.com/upload
Among them, it should be noted that:
When using the -F parameter, curl considers it to be an uploaded file and will specify it by default. -H Content-Type: multipart/form-datas, indicating the use of file upload format
When the -F parameter specifies file information, you can specify multiple files and file types. Multiple parameters are separated by;
2. File download
There are many ways to download files in the curl command, namely:
For the result data obtained by the request, you can use the Linux method The redirect function saves to a file...>> index.html
Use the -o/-O parameter to request the file and save it,
curl -o a.jpg http://www.baidu.com/b.jpg
When requesting to download a file, you can specify the -# parameter at the same time, which will display the progress of the file download. Use - sClose
If the file download process stops, you can add the -C parameter to execute the breakpoint resume download of the file
Use curl to simulate GET/POST requests
The curl command supports POST requests, cookies, authentication and other operations, so it can also be well used to simulate service interface requests during the development process. .
1. Simulate GET request
The GET request is actually the simplest service request. It carries parameter information through URL splicing, so it is easiest to use curl directly. Just request it.
Simulating GET requests to obtain data during the development process:
curl http://localhost:8080/getUserInfo?id=1。
2. Simulating POST requests
POST requests are a way to submit data. When requesting the service address, parameter information will be carried for submission. The curl command also provides a method for carrying parameter information.
-X, the parameter is followed by the request method, you can perform a POST request
-H, the parameter is followed by a string, you can specify the request header information, For example, "Content-Type:application/json" means transmitting data in json format
-
-d, and the parameter is followed by a string. You can specify the request parameter content in the form of a string, using -d Please note when using parameters
This command can be used multiple times to specify multiple parameter information
也可以使用 -d 'key1=val1&key2=val2' 来一次指定多个参数
如果指定了参数为json类型,则可以使用 -d '{"id":1,"name":"shone"}' 来传递一个json对象
使用 -d 参数后,请求类型会默认为POST,此时可以省略 -X 参数的指定
-d参数还可以指定文件作为参数,使用@后跟文件名的方式,-d "@test.txt"
对于一个完整的POST请求可以是:
curl -H "Content-Type:application/json" -d '{"id":1,"name":"shone"}' http://localhost:8080/queryInfo
3、使用 Cookies
浏览器在进行服务请求时,通常会保存请求信息到Cookies中,可以使用 -D 参数来指定保存请求的Cookies
curl -o page1.html -D cookie.txt http://www.baidu.com
curl 命令还可以模拟浏览器的请求,使用 -A 指定浏览器信息来模仿浏览器发起请求并保存Cookies
curl -A "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)" -o page.html -D cookie.txt http://mydomain.net
保存的Cookie信息,可以在请求时使用-b参数指定携带Cookie
curl -b cookie.txt http://www.baidu.com
相关推荐:《Linux视频教程》
The above is the detailed content of Is curl installed by default on linux?. For more information, please follow other related articles on the PHP Chinese website!

linux设备节点是应用程序和设备驱动程序沟通的一个桥梁;设备节点被创建在“/dev”,是连接内核与用户层的枢纽,相当于硬盘的inode一样的东西,记录了硬件设备的位置和信息。设备节点使用户可以与内核进行硬件的沟通,读写设备以及其他的操作。

区别:1、open是UNIX系统调用函数,而fopen是ANSIC标准中的C语言库函数;2、open的移植性没fopen好;3、fopen只能操纵普通正规文件,而open可以操作普通文件、网络套接字等;4、open无缓冲,fopen有缓冲。

端口映射又称端口转发,是指将外部主机的IP地址的端口映射到Intranet中的一台计算机,当用户访问外网IP的这个端口时,服务器自动将请求映射到对应局域网内部的机器上;可以通过使用动态或固定的公共网络IP路由ADSL宽带路由器来实现。

在linux中,eof是自定义终止符,是“END Of File”的缩写;因为是自定义的终止符,所以eof就不是固定的,可以随意的设置别名,linux中按“ctrl+d”就代表eof,eof一般会配合cat命令用于多行文本输出,指文件末尾。

在linux中,可以利用“rpm -qa pcre”命令判断pcre是否安装;rpm命令专门用于管理各项套件,使用该命令后,若结果中出现pcre的版本信息,则表示pcre已经安装,若没有出现版本信息,则表示没有安装pcre。

linux查询mac地址的方法:1、打开系统,在桌面中点击鼠标右键,选择“打开终端”;2、在终端中,执行“ifconfig”命令,查看输出结果,在输出信息第四行中紧跟“ether”单词后的字符串就是mac地址。

在linux中,rpc是远程过程调用的意思,是Reomote Procedure Call的缩写,特指一种隐藏了过程调用时实际通信细节的IPC方法;linux中通过RPC可以充分利用非共享内存的多处理器环境,提高系统资源的利用率。

在linux中,交叉编译是指在一个平台上生成另一个平台上的可执行代码,即编译源代码的平台和执行源代码编译后程序的平台是两个不同的平台。使用交叉编译的原因:1、目标系统没有能力在其上进行本地编译;2、有能力进行源代码编译的平台与目标平台不同。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

WebStorm Mac version
Useful JavaScript development tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
