m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/curl.md
diff options
context:
space:
mode:
authorMarcin Chrzanowski <m@m-chrzan.xyz>2026-05-26 18:25:46 +0200
committerMarcin Chrzanowski <m@m-chrzan.xyz>2026-05-26 18:25:46 +0200
commit104d0c03dba7b56cc5871f29dc88f63751f62b01 (patch)
tree2b80d33ae3eda5b705dc256a6ae8e3873c0c5771 /curl.md
parent6f5372bba77f6c070df5ea46d19d95435b7d0f90 (diff)
Add curl
Diffstat (limited to 'curl.md')
-rw-r--r--curl.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/curl.md b/curl.md
new file mode 100644
index 0000000..3048f85
--- /dev/null
+++ b/curl.md
@@ -0,0 +1,11 @@
+# Curl
+
+## Basic options
+
+* `--silent`: suppresses additional output: progress meter, warning/error messages
+ * Add `--show-error` to return error messages.
+ * Or `--no-progress-meter` to only remove progress meter, keep messages
+
+## Request parameters
+
+* `-X`/`--request <method>`: set the method, e.g. GET, PUT, DELETE, etc.