diff options
author | Werner Koch <[email protected]> | 2016-09-05 07:49:06 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2016-09-05 07:52:04 +0000 |
commit | 959cd8903fd012e63dbb156db56708dd3934b5df (patch) | |
tree | fdb038b5db058b7213de7b3a419490cf64392f31 /doc | |
parent | gpg: Use a common filter_getval for import and export. (diff) | |
download | gnupg-959cd8903fd012e63dbb156db56708dd3934b5df.tar.gz gnupg-959cd8903fd012e63dbb156db56708dd3934b5df.zip |
common: Add string operator gt,ge,le,lt to recsel.
* common/recsel.c (recsel_parse_expr): Add them.
(recsel_dump): Print them.
(recsel_select): Evaluate them.
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/gpg.texi | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/doc/gpg.texi b/doc/gpg.texi index 68b21b62a..901d1ee15 100644 --- a/doc/gpg.texi +++ b/doc/gpg.texi @@ -3500,12 +3500,24 @@ The supported operators (@var{op}) are: @item < The numerical value of the field must be LT than the value. - @item >= + @item > The numerical value of the field must be GT than the value. @item >= The numerical value of the field must be GE than the value. + @item -le + The string value of the field must be less or equal than the value. + + @item -lt + The string value of the field must be less than the value. + + @item -gt + The string value of the field must be greater than the value. + + @item -ge + The string value of the field must be greater or equal than the value. + @item -n True if value is not empty (no value allowed). |