Skip to content
Snippets Groups Projects
Commit 11180c84 authored by Sébastien Luttringer's avatar Sébastien Luttringer
Browse files

Update TQL with new operator

parent 30c8870d
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,7 @@ seblu> list r=vm^5:10 #list vm
seblu> list r=vm%vm #list vm sorted by vm
seblu> list r=vm%vm%cpu #list vm sorted by vm and cpu
seblu> list r=vm&-cpu #list vm without tag cpu
seblu> list a-con #list disconnected account
seblu> list a-con #list disconnected account
== Basics ==
- TQL build a list of objects in one query
......@@ -46,6 +46,7 @@ seblu> list a-con #list disconnected account
== statement separators ==
& selection intersection
| selection union
/ selection complement
^ selection limit
$ tag showing
% tag sorting
......@@ -138,6 +139,6 @@ input: [ prop ] EOL
prop: "(" prop ")" | stat
stat: [ prop ] sep prop | [ prop ] mod word | clause
clause: word [ op word ]
sep: "&" | "|"
sep: "&" | "|" | "/"
mod: "^" | "%" | "$"
op: "=" | "!=" | ":" | "!:" | "~" | "!~" | ">" | ">=" | "<" | "<="
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment