14,959
edits
| Line 188: | Line 188: | ||
'''Explanation''' by Claude | '''Explanation''' by Claude | ||
<!-- 用於修復摺疊的顯示效果,因為切換連結有float:right;屬性 --> | |||
<div class="toccolours mw-collapsible mw-collapsed" style="width:400px; overflow:auto;"> | |||
When you see a "no matches found" error in zsh (a type of shell), it's because the shell gets confused by special characters in your command. The main problem is the question mark (?) in the URL. | When you see a "no matches found" error in zsh (a type of shell), it's because the shell gets confused by special characters in your command. The main problem is the question mark (?) in the URL. | ||
| Line 203: | Line 204: | ||
The fix is simple: put double quotes ("") around your URL. This tells the shell "just use these characters exactly as they are - don't try to do anything special with them." Now the ? goes straight to curl as part of the web address, instead of being used as a special character by the shell. | The fix is simple: put double quotes ("") around your URL. This tells the shell "just use these characters exactly as they are - don't try to do anything special with them." Now the ? goes straight to curl as part of the web address, instead of being used as a special character by the shell. | ||
</div> | |||
== How to resolve the error: Remote file name has no length == | == How to resolve the error: Remote file name has no length == | ||