summaryrefslogtreecommitdiff
path: root/README.txt
diff options
context:
space:
mode:
authorYour Name <you@example.com>2026-03-07 12:44:32 +0800
committerYour Name <you@example.com>2026-03-07 12:44:32 +0800
commitdb58cda6a57e3f7cbb6b2e3807d27a4fdea147ca (patch)
tree5ee31ef34bca12e1e0a184a3374d12ac82266f6b /README.txt
parentb818aaabc8f695de5c382188277b36f60a9397a0 (diff)
readme: add wget examplesHEADmain
Diffstat (limited to 'README.txt')
-rw-r--r--README.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/README.txt b/README.txt
index 1f9faab..715e64d 100644
--- a/README.txt
+++ b/README.txt
@@ -6,3 +6,7 @@ cargo uninstall fileserver
6curl upload: 6curl upload:
7curl -k -u :mypass -F file=@myfile.pdf https://localhost:8000/ 7curl -k -u :mypass -F file=@myfile.pdf https://localhost:8000/
8curl -k -u :mypass -O https://localhost:8000/myfile.pdf 8curl -k -u :mypass -O https://localhost:8000/myfile.pdf
9
10wget download:
11wget --no-check-certificate https://localhost:8000/myfile.pdf
12wget --no-check-certificate --user= --password=mypass https://localhost:8000/myfile.pdf