mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 15:33:16 +00:00
[options] Mention quoted string literals for --match-filter
This commit is contained in:
parent
e84888b432
commit
ac33accd96
|
@ -302,8 +302,10 @@ def _scrub_eq(o):
|
||||||
'match if the key is present, '
|
'match if the key is present, '
|
||||||
'!key to check if the key is not present, '
|
'!key to check if the key is not present, '
|
||||||
'key > NUMBER (like "comment_count > 12", also works with '
|
'key > NUMBER (like "comment_count > 12", also works with '
|
||||||
'>=, <, <=, !=, =) to compare against a number, and '
|
'>=, <, <=, !=, =) to compare against a number, '
|
||||||
'& to require multiple matches. '
|
'key = \'LITERAL\' (like "uploader = \'Mike Smith\'", also works with !=) '
|
||||||
|
'to match against a string literal '
|
||||||
|
'and & to require multiple matches. '
|
||||||
'Values which are not known are excluded unless you '
|
'Values which are not known are excluded unless you '
|
||||||
'put a question mark (?) after the operator. '
|
'put a question mark (?) after the operator. '
|
||||||
'For example, to only match videos that have been liked more than '
|
'For example, to only match videos that have been liked more than '
|
||||||
|
|
Loading…
Reference in a new issue