You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-4Lines changed: 13 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -757,8 +757,9 @@ pwd
757
757
<tr>
758
758
<td><a href="#u-w">w</a></td>
759
759
<td><a href="#v-wget">wget</a></td>
760
-
<td><a href="#w-whoami">whoami</a></td>
761
-
<td><a href="#x-whois">whois</a></td>
760
+
<td><a href="#w-curl">curl</a></td>
761
+
<td><a href="#x-whoami">whoami</a></td>
762
+
<td><a href="#y-whois">whois</a></td>
762
763
</tr>
763
764
</table>
764
765
@@ -891,10 +892,18 @@ Downloads file.
891
892
wget file
892
893
```
893
894
894
-
### w. `whoami`
895
+
### w. `curl`
896
+
Curl is a command-line tool for requesting or sending data using URL syntax. Usefull on systems where you only have terminal available for making various requests.
897
+
```bash
898
+
curl url
899
+
```
900
+
Use `-X` or `--request` to specify which method you would like invoke (GET, POST, DELETE, ...).
901
+
Use `-d <data>` or `--data <data>` to POST data on given URL.
0 commit comments