On our site, there are many tutorials that have helped you learn about Linux, but in them, there is a very particular command called CURL. For example, in the post where I taught you how to install Rust, I used it, but I didn’t explain what it is. Therefore, in this post, I will teach you how to use the CURL command on Linux.
CURL is a command line tool and library for transferring data with URLs. Many download scripts or file transfers use CURL as a means to achieve this. In addition, CURL supports FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP and many other protocols quite popular on networks.
On the other hand, the use of CURL is not limited exclusively to computers but to other devices that use UNIX such as cell phones, cars and is the transfer backend of many of the most popular applications in the world.
Using CURL command on Linux
The idea of this post is to show the use of CURL, not to do it in a theoretical way. The main idea is to do it through examples that demonstrate its use.
So, let’s start.
1. Install CURL
Obviously, the first step is to install CURL. It is really simple as it is available in the official repositories of most Linux distributions. So, its installation is limited to a single command.
For Debian, Ubuntu, Linux Mint and derivates
:~$ sudo apt install curl
If you use Fedora:
:~$ sudo dnf install curl
For CentOS and RHEL:
:~$ yum install curl
2. Check the CURL version
The second thing you should do is, check the CURL version. Important to know what news you have available. While it is not essential to have CURL updated to its latest version, it is also not crazy to do so.
:~$ curl --version
3. Display the content of an HTML
A simple way to display the source code of an HTML site from the terminal is with CURL.
:~$ curl http://website.com/page.html
Of course, it is necessary that you place the complete website of your preference.
4. Download a file with CURL
This is one of the most common uses we give to CURL. Downloading a file is a really simple task.
:~$ curl -O https://pixabay.com/en/photos/download/ocean-3605547_1280.jpg
You can use the -o
option to specify the name of the downloaded file.
:~$ curl -o image.jpg https://pixabay.com/en/photos/download/ocean-3605547_1280.jpg
I remind you again that, I’m using test URLs, you have to enter yours.
5. Use a proxy
With CURL it is possible to make connections through a proxy. The proxy may or may not require authentication.
:~$ curl -x your-proxy:8080 -U user_password -O http://domain.com/file
In case the proxy server does not need authentication, you can omit the option -U.
6. Get HTTP header information from a website
There are occasions when it is necessary to know the information stored in the HTTP headers of some website. It is really easy to do it with CURL.
:~$ curl -I http://website.com
7. Limit download rate
If you are connected using mobile data or simply want to limit the CURL download rate, you can do it easily.
:~$ curl --limit-rate 100K -O http://domain.com/file.file
8. Download file from an FTP server
As I said at the beginning of this post, CURL supports many protocols, not only HTTP but also FTP. Now I will show you how to do it.
:~$ curl -u username:password -O ftp://ftpserver/file.zip
In case you do not need authentication, omit the option -u.
9. Upload Files to an FTP server
You can also upload files to an FTP server. The syntax is similar only this time, you should add the -T option.
:~$ curl -u username:password -T myfilepath.jpg ftp://ftpserver/file.zip
Note: I’m using false addresses and that’s why CURL can’t find them. But don’t worry that the commands are correct.
10. Check the CURL help
Of course, the use of the CURL command is very extensive and I only demonstrated some of its uses. For more information about the CURL command, it is convenient to consult its help from the terminal.
:~$ curl --help
And that’s it.
Conclusion
I hope this article has made clear to you the potential of CURL. There is so much potential that there is still so much to show, but I think the objective has been achieved.
CURL is widely used in script automation of content downloads and is not only used in computer equipment but in many others.
So, if you liked the article share it through your social networks.