question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Issues running PatreonDownloader on macOS

See original GitHub issue

Hello, I’m getting this error on OS X:

franck@Admins-MacBook-Pro PatreonDownloader.App % dotnet run --url https://www.patreon.com/user/posts?u=27022 --verbose

zsh: no matches found: https://www.patreon.com/user/posts?u=27022

Any idea?

Issue Analytics

  • State:open
  • Created 2 years ago
  • Comments:7 (2 by maintainers)

github_iconTop GitHub Comments

3reactions
disco0commented, Jul 11, 2021

Little bit late, but for future reference—? is a glob operator, which should be escaped or quoted to avoid triggering and failing to match a file name. Its also very common in urls, which is unfortunate.

Some examples of usage below, assuming dotnet is a command on PATH:


# Temporarilty make dotnet command just show arguments passed in, just for demonstration purposes
function dotnet() { builtin print -u2 -- $^@ } 

{

# Invalid: As invoked in issue
dotnet run --url https://www.patreon.com/user/posts?u=27022 --verbose

# Escaping globbing character
dotnet run --url https://www.patreon.com/user/posts\?u=27022 --verbose

# Quoting globbing character
dotnet run --url "https://www.patreon.com/user/posts?u=27022" --verbose

# Using the noglob precommand modifier
noglob dotnet run --url https://www.patreon.com/user/posts?u=27022 --verbose

} always { unfunction dotnet }

Only the first command should error out.

I believe bracketed-paste-url-magic can handle this automatically when pasting text as well.

0reactions
frranckcommented, May 17, 2021

OK thanks, I will try on a windows or linux.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Foxite/PatreonDownloader
PatreonDownloader. A simple command line tool that downloads all media from a Patreon campaign. It's not exactly easy to use, but it's explained...
Read more >
Simple Patreon Downloader? : r/DataHoarder
Hi, I'm looking to archive the works of a creator on Patreon in bulk. I've looked at gallery-dl already but it seems to...
Read more >
Issues downloading MacOS Monterey
Trying to download MacOS Monterey the status bar doesn't reach the end but it says that all the data is download. I've tried...
Read more >
Use the Best Patreon Downloader to Save Videos [Step-by-Step]
This page will let you successfully store videos in local files with a special Patreon video downloader free- a screen recorder. Best Patreon...
Read more >
Jdownloader supported sites. This guarantees you ...
Install or update 4K Video Downloader now to save audio and video from Bilibili! ... with various operating systems, including Windows, macOS, and...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found