Comment 4 for bug 1590872

Revision history for this message
Vladimir Kuklin (vkuklin) wrote :

There is a workaround ot filter things out properly

for fuel CLI v1 use the following awk filter:

... | awk -F '|' '{if (!match($2,/^[[:space:]]*$/,result)) { print $result[0] } }'

for fuel CLI v2 use the other one:

... | awk -F '|' '{if (!match($3,/None/,result)) { print $result[0] } }'