Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TLMSP curl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CYBER - Cyber Security
TS 103 523 MSP
TLMSP
TLMSP curl
Commits
07d46886
Commit
07d46886
authored
16 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
Anthony Bryan's letter=>symbol fixes
parent
b79c8f52
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
docs/FAQ
+6
-6
6 additions, 6 deletions
docs/FAQ
docs/MANUAL
+1
-1
1 addition, 1 deletion
docs/MANUAL
with
7 additions
and
7 deletions
docs/FAQ
+
6
−
6
View file @
07d46886
...
...
@@ -658,22 +658,22 @@ FAQ
4.2 Why do I get problems when I use & or % in the URL?
In general unix shells, the &
letter
is treated specially and when used, it
In general unix shells, the &
symbol
is treated specially and when used, it
runs the specified command in the background. To safely send the & as a part
of a URL, you should quote the entire URL by using single (') or double (")
quotes around it. Similar problems can also occur on some shells with other
characters, including ?*!$~(){}<>\|;`. When in doubt, quote the URL.
An example that would invoke a remote CGI that uses &-
letter
s could be:
An example that would invoke a remote CGI that uses &-
symbol
s could be:
curl 'http://www.altavista.com/cgi-bin/query?text=yes&q=curl'
In Windows, the standard DOS shell treats the %-
letter
specially and you
need to use TWO %-
letter
s for each single one you want to use in the URL.
In Windows, the standard DOS shell treats the %-
symbol
specially and you
need to use TWO %-
symbol
s for each single one you want to use in the URL.
Also note that if you want the literal %-
letter
to be part of the data you
Also note that if you want the literal %-
symbol
to be part of the data you
pass in a POST using -d/--data you must encode it as '%25' (which then also
needs the %-
letter
doubled on Windows machines).
needs the %-
symbol
doubled on Windows machines).
4.3 How can I use {, }, [ or ] to specify multiple URLs?
...
...
This diff is collapsed.
Click to expand it.
docs/MANUAL
+
1
−
1
View file @
07d46886
...
...
@@ -512,7 +512,7 @@ CONFIG FILE
can also specify the long options without the dashes to make it more
readable. You can separate the options and the parameter with spaces, or
with = or :. Comments can be used within the file. If the first letter on a
line is a '#'-
letter
the rest of the line is treated as a comment.
line is a '#'-
symbol
the rest of the line is treated as a comment.
If you want the parameter to contain spaces, you must enclose the entire
parameter within double quotes ("). Within those quotes, you specify a
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment