Closed aotombielecki closed 1 year ago
First time using perl on macOS, just wanted to give this tip for anyone else searching
/yt-to-webpage.pl project-name https://www.youtube.com/watch?v=jNQXAC9IVRw zsh: no matches found: https://www.youtube.com/watch?v=jNQXAC9IVRw
The issue is with zsh's URL handling, not the script itself. Quote the URL to avoid zsh's special character interpretation.
Try:
./yt-to-webpage.pl project-name "https://www.youtube.com/watch?v=jNQXAC9IVRw"
Context:
?
&
Thanks.
I've updated the example and the doc to show quoted URLs exclusively.
First time using perl on macOS, just wanted to give this tip for anyone else searching
The issue is with zsh's URL handling, not the script itself. Quote the URL to avoid zsh's special character interpretation.
Try:
Context:
?
and&
as special characters; quoting the URL prevents this.