Hello
I have two fields field1
and field2
extracted from my search and I would like to present then in a table, with a string prepended to one of them, something like:
field1 | http://example.com?field2
where http://example.com?
is a fixed string.
Is this possible?
Thank you!
eval
is your friend.
search-that-returns-fields | eval newfield="http://example.com?"+field2 | table field1 newfield
eval
is your friend.
search-that-returns-fields | eval newfield="http://example.com?"+field2 | table field1 newfield