If you are trying to run a cURL command in your Terminal and you get an error saying "bash: command not fount - cURL", the reason could be that you do not have cURL installed on your computer,
You can fix this error but installing curl using apt package manager,
Fix:# apt install curl
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following NEW packages will be installed:
curl
0 upgraded, 1 newly installed, 0 to remove and 19 not upgraded.
Need to get 157 kB of archives.
After this operation, 403 kB of additional disk space will be used.
Get:1 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 curl arm64 7.68.0-1ubuntu2.7 [157 kB]
Fetched 157 kB in 1s (110 kB/s)
debconf: delaying package configuration, since apt-utils is not installed
Selecting previously unselected package curl.
(Reading database ... 11521 files and directories currently installed.)
Preparing to unpack .../curl_7.68.0-1ubuntu2.7_arm64.deb ...
Unpacking curl (7.68.0-1ubuntu2.7) ...
Setting up curl (7.68.0-1ubuntu2.7) ...
Example:
# curl www.google.co
<HTML><HEAD><meta http-equiv="content-type" content="text/html;charset=utf-8">
<TITLE>301 Moved</TITLE></HEAD><BODY>
<H1>301 Moved</H1>
The document has moved
<A HREF="https://www.google.com/">here</A>.
</BODY></HTML>
- Get cURL command from Chrome Inspect Network HTTP URL
- Downloading Google Chrome using cURL Command
- Get the Size of HTTP Response using cURL Command (Content Length)
- How to set Connection and Max Timeout for cURL Request with Examples
- Hide cURL Outputs and Errors on Terminal
- cURL Example using IP (IPv4 and IPv6) address and Port
- Perform Basic Authentication using cURL with Examples
- Efficient way to perform HTTP cURL GET/POST Requests with Payload
- trurl: A new command-line tool for URL parsing and manipulation by cURL Developer
- Trace using cURL Command Example
- Fetch only content-type using cURL Command
- cURL Option to show HTTP Response Status Code
- [fix] command not found curl
- How to get cURL Command to run in verbose mode?
- Save cURL Command Output to a external file
- List of 28 Protocols supported by cURL with Examples
- URL Encode cURL HTTP GET\POST Data with Examples
- How to Pretty Print cURL JSON Output in Terminal
- Test Timeout using JUnit 4 with examples - Java
- Installing Android Studio Dolphin on Mac with Apple (M1/M2) Chip - Android-Studio
- How to format LocalDate in Java using DateTimeFormatter - Java
- You're not on Teams yet, but you can set it up for your organization. [Microsoft Teams Login Error] - Microsoft
- Create HTML button that looks like a href hyperlink - Html
- Display Output in Java Console as a Table - Java
- How to enable missing SharePoint Site Assets, Site Pages library App - SharePoint
- Android : No Launcher activity found! Error - Android