diff --git a/README.md b/README.md index 71bf30c..34e7761 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,15 @@ It's part of the video URL: `https://www.youtube.com/watch?v=`. | https://www.youtube.com/watch?v=abc123def45 | abc123def12 | | https://youtu.be/abc123def45 | abc123def45 | +**Nota:** + +If `` begins with a dash, if you use it directly, you will see an error message: error: `unknown option '-…'`, where `…` is the second character of `` after the dash `-`. + +Remark: the quotes around the `` are optional, and ineffective to suppress the error message in this case. + +To work around this behavior, please use before `` the double dash (`--`), which terminates the list of command-line options (according to the POSIX specification). + +So, if the video URL is `https://www.youtube.com/watch?v=-abc123def45`, it's `` is `-abc123def45`, and you will use this command line: `$ youtube-comment-scraper [options] -- -abc123def45`. ### Options